lrs_ebcdic_to_ascii
Example: lrs_ebcdic_to_ascii | Conversion Functions |
Converts buffer data from EBCDIC format to ASCII format.
char *lrs_ebcdic_to_ascii( char *s_desc, char *buff, long length );
s_desc | A descriptor identifying a socket. |
buff | A pointer to the buffer. |
length | The buffer length. |
The lrs_ebcdic_to_ascii function converts binary buffer data from EBCDIC format to ASCII format. The translated buffer is stored in the internal buffer (User Buffer ), in ASCII format. To retrieve the contents of the buffer, use lrs_get_user_buffer. To determine the size of the buffer, use lrs_get_user_buffer_size.
Note that the following functions overwrite the same internal buffer (user buffer):
In all of the above user buffer functions (except lrs_decimal_to_hex_string), use lrs_get_user_buffer_size to determine the actual buffer size before printing the buffer contents. Do not retrieve the entire buffer using a -1 as the length argument, and then try to print its contents. The reason for this is that VuGen may misinterpret the NULL characters within the buffer as a terminating string. Print functions include all the Message Functions such as lr_output_message.
Return Values
If this function fails, it returns NULL. If it succeeds, it returns a pointer to the converted buffer. You can also retrieve the converted buffer using lrs_get_user_buffer .
Parameterization
You cannot use standard parameterization for any arguments in this function.