| 2356 | // |
| 2357 | |
| 2358 | static void put_cstring(gpre_req* request, USHORT ddl_operator, |
| 2359 | const TEXT* string) |
| 2360 | { |
| 2361 | USHORT length = 0; |
| 2362 | if (string != NULL) |
| 2363 | length = static_cast<USHORT>(strlen(string)); |
| 2364 | |
| 2365 | put_string(request, ddl_operator, string, length); |
| 2366 | } |
| 2367 | |
| 2368 | |
| 2369 | //____________________________________________________________ |
no test coverage detected