| 115 | int sortcmp(const String *a,const String *b, const CHARSET_INFO *cs); |
| 116 | String *copy_if_not_alloced(String *a,String *b,uint32 arg_length); |
| 117 | inline uint32 copy_and_convert(char *to, uint32 to_length, |
| 118 | const CHARSET_INFO *to_cs, |
| 119 | const char *from, uint32 from_length, |
| 120 | const CHARSET_INFO *from_cs, uint *errors) |
| 121 | { |
| 122 | return my_convert(to, to_length, to_cs, from, from_length, from_cs, errors); |
| 123 | } |
| 124 | uint32 well_formed_copy_nchars(const CHARSET_INFO *to_cs, |
| 125 | char *to, uint to_length, |
| 126 | const CHARSET_INFO *from_cs, |
no test coverage detected