Syntax | #include <ascii_ebcdic.h> char*_a2e_dup__n (char* z, size_t n); char*_e2a_dup_n (char* z, size_t n); | |
Description | These functions create a new string by taking z and converting precisely n characters from ASCII to EBCDIC and vice versa. The memory for the new string is allocated by means of | |
Return val. | New EBCDIC or ASCII string (if successful) NULL, if there is insufficient memory | |
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 |
|