| 570 | |
| 571 | |
| 572 | ISC_STATUS API_ROUTINE gds__encode(ISC_STATUS code, USHORT facility) |
| 573 | { |
| 574 | /************************************** |
| 575 | * |
| 576 | * g d s _ $ e n c o d e |
| 577 | * |
| 578 | ************************************** |
| 579 | * |
| 580 | * Functional description |
| 581 | * Translate a status codes from network format to system |
| 582 | * dependent form. |
| 583 | * |
| 584 | **************************************/ |
| 585 | return (code ? ENCODE_ISC_MSG(code, facility) : FB_SUCCESS); |
| 586 | } |
| 587 | |
| 588 | |
| 589 | void API_ROUTINE isc_encode_date(const void* times_arg, ISC_QUAD* date) |
nothing calls this directly
no test coverage detected