| 753 | /* The following will only be used for short strings < 65K */ |
| 754 | |
| 755 | uchar *net_store_data(uchar *to, const uchar *from, size_t length) |
| 756 | { |
| 757 | to=net_store_length_fast(to,length); |
| 758 | if (length) |
| 759 | memcpy(to,from,length); |
| 760 | return to+length; |
| 761 | } |
| 762 | |
| 763 | uchar *net_store_data(uchar *to,int32 from) |
| 764 | { |
no test coverage detected