Syntax | #include <ascii_ebcdic.h> char*_a2e_n (char* z, size_t n); char*_e2a_n (char* z, size_t n); | |
Description | These functions convert the string z passed as a parameter with a length of n from ASCII to EBCDIC or vice versa. Conversion takes place on the spot. The corresponding data areas thus have to be writable. | |
Return val. | The string z passed as a parameter, after its conversion to EBCDIC or ASCII code. | |
Note | The function are suitable for processing character arrays, which, in contrast to character strings, need not be terminated by the null byte (\0). | |
See also |
|