| 216 | typedef struct st_mysql_const_unsigned_lex_string LEX_CUSTRING; |
| 217 | |
| 218 | static inline void lex_string_set(LEX_CSTRING *lex_str, const char *c_str) |
| 219 | { |
| 220 | lex_str->str= c_str; |
| 221 | lex_str->length= strlen(c_str); |
| 222 | } |
| 223 | |
| 224 | /** |
| 225 | Copies a string. |
no outgoing calls
no test coverage detected