247
247
bool copy(); // Alloc string if not alloced
248
248
bool copy(const String &s); // Allocate new string
249
250
bool copy(const char *s,size_t arg_length, const CHARSET_INFO * const cs); // Allocate new string
250
251
static bool needs_conversion(size_t arg_length,
251
252
const CHARSET_INFO * const cs_from, const CHARSET_INFO * const cs_to,
253
254
bool set_or_copy_aligned(const char *s, size_t arg_length, const CHARSET_INFO * const cs);
254
255
bool copy(const char*s,size_t arg_length, const CHARSET_INFO * const csfrom,
256
257
bool append(const String &s);
257
258
bool append(const char *s);
258
259
bool append(const char *s,size_t arg_length);