1 09/30/83  bcd_to_ascii_
 2 
 3 
 4 Entry points in bcd_to_ascii_:
 5    (list is generated by the help command)
 6 
 7 
 8 :Entry:  bcd_to_ascii_:  09/30/83 bcd_to_ascii_
 9 
10 
11 Function:  performs isomorphic conversion from BCD to ASCII.
12 
13 
14 Syntax:
15 dcl bcd_to_ascii_ entry (bit(*), char(*));
16 call bcd_to_ascii_ (bcd_in, ascii_out);
17 
18 
19 Arguments:
20 bcd_in
21    is a bit string that represents the BCD characters to convert.
22    (Input)
23 ascii_out
24    is the lower case ASCII equivalent of the input string.  (Output)
25