Store a C short integer into a Cobol BINARY(n) (big-endian) field
| 466 | |
| 467 | // Store a C short integer into a Cobol BINARY(n) (big-endian) field |
| 468 | static void ShortToCobol(argument_entry *arg, const ISC_USHORT *i) |
| 469 | { |
| 470 | if (arg->a_address) |
| 471 | CvtIntToCobol(arg->a_address, (ISC_ULONG)*i, (ISC_USHORT)arg->a_length); |
| 472 | } |
| 473 | |
| 474 | // Store a C string into a COBOL PIC X field |
| 475 | static void StringToCobol(argument_entry *arg, const ISC_UCHAR *s) |
no test coverage detected