MCPcopy Create free account
hub / github.com/Meituan-Dianping/SQLAdvisor / find_end_of_word

Function find_end_of_word

extra/comp_err.c:833–841  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

831*/
832
833static char *find_end_of_word(char *str)
834{
835 DBUG_ENTER("find_end_of_word");
836 for (;
837 *str != ' ' && *str != '\t' && *str != '\n' && *str != '\r' && *str &&
838 *str != ',' && *str != ';' && *str != '='; str++)
839 ;
840 DBUG_RETURN(str);
841}
842
843
844/* Read the word starting from *str */

Callers 4

parse_error_offsetFunction · 0.85
parse_default_languageFunction · 0.85
get_wordFunction · 0.85
parse_charset_stringFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected