12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef MYSQL_LEX_STRING_INCLUDED
- #define MYSQL_LEX_STRING_INCLUDED
- struct st_mysql_lex_string
- {
- char *str;
- size_t length;
- };
- typedef struct st_mysql_lex_string MYSQL_LEX_STRING;
- struct st_mysql_const_lex_string
- {
- const char *str;
- size_t length;
- };
- typedef struct st_mysql_const_lex_string MYSQL_LEX_CSTRING;
- #endif
|