24#ifndef MYSQL_STRCONV_DECODE_WHITESPACE_H
25#define MYSQL_STRCONV_DECODE_WHITESPACE_H
43 return (x >= 9 && x <= 13) || x == 32;
Object used to parse strings.
Definition: parser.h:69
bool is_sentinel() const
Return true if this iterator is at the end.
Definition: parse_position.h:92
Definition: gtid_binary_format.h:41
void skip_whitespace(Parser &parser)
Move the position forward until end or non-whitespace.
Definition: whitespace.h:47
constexpr bool is_space(int x)
Return true if the given character is a space character, i.e., ascii 9, 10, 11, 12,...
Definition: whitespace.h:42