Store a C integer into a Cobol BINARY(n) (big-endian) field
| 459 | |
| 460 | // Store a C integer into a Cobol BINARY(n) (big-endian) field |
| 461 | static void IntToCobol(argument_entry *arg, const ISC_UINT64 i) |
| 462 | { |
| 463 | if (arg->a_address) |
| 464 | CvtIntToCobol(arg->a_address, i, (ISC_USHORT)arg->a_length); |
| 465 | } |
| 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) |
no test coverage detected