24#ifndef MYSQL_GTID_INTERNAL_PARSING_HELPERS_H 
   25#define MYSQL_GTID_INTERNAL_PARSING_HELPERS_H 
   38  return (ch >= 
'a' && ch <= 
'z') || (ch >= 
'A' && ch <= 
'Z');
 
Definition: parsing_helpers.h:32
 
bool isspace(const char &ch)
Definition: parsing_helpers.h:34
 
bool isalpha(const char &ch)
Definition: parsing_helpers.h:37
 
char tolower(const char &ch)
Definition: parsing_helpers.h:41
 
bool isdigit(const char &ch)
Definition: parsing_helpers.h:40