| 795 | Both gds__interprete and isc_interprete are deprecated. */ |
| 796 | |
| 797 | SLONG API_ROUTINE gds__interprete(char* s, ISC_STATUS** vector) |
| 798 | { |
| 799 | /************************************** |
| 800 | * |
| 801 | * g d s _ $ i n t e r p r e t e |
| 802 | * |
| 803 | ************************************** |
| 804 | * |
| 805 | * Functional description |
| 806 | * See safe_interpret for details. Now this is a wrapper for that function. |
| 807 | * CVC: Since this routine doesn't get the size of the input buffer, |
| 808 | * it's DEPRECATED and we'll assume the buffer size was 1024 as in Borland examples. |
| 809 | * |
| 810 | **************************************/ |
| 811 | return safe_interpret(s, 1024, const_cast<const ISC_STATUS**>(vector), true); |
| 812 | } |
| 813 | |
| 814 | |
| 815 | /** |
nothing calls this directly
no test coverage detected