| 2341 | |
| 2342 | |
| 2343 | static uchar * |
| 2344 | write_length_encoded_string3(uchar *buf, char *string, size_t length) |
| 2345 | { |
| 2346 | buf= net_store_length(buf, length); |
| 2347 | memcpy(buf, string, length); |
| 2348 | buf+= length; |
| 2349 | return buf; |
| 2350 | } |
| 2351 | |
| 2352 | |
| 2353 | uchar * |
no test coverage detected