| 360 | // |
| 361 | |
| 362 | void CMP_stuff_symbol( gpre_req* request, const gpre_sym* symbol) |
| 363 | { |
| 364 | request->add_byte(static_cast<int>(strlen(symbol->sym_string))); |
| 365 | |
| 366 | for (const TEXT* p = symbol->sym_string; *p; p++) |
| 367 | request->add_byte(*p); |
| 368 | } |
| 369 | |
| 370 | |
| 371 | //____________________________________________________________ |
no test coverage detected