8#ifndef ORCUS_PARSER_GLOBAL_HPP
9#define ORCUS_PARSER_GLOBAL_HPP
19enum class string_escape_char_t
34 ORCUS_PSR_DLLPUBLIC
static const size_t error_no_closing_quote;
35 ORCUS_PSR_DLLPUBLIC
static const size_t error_illegal_escape_char;
59ORCUS_PSR_DLLPUBLIC
bool is_blank(
char c);
60ORCUS_PSR_DLLPUBLIC
bool is_alpha(
char c);
61ORCUS_PSR_DLLPUBLIC
bool is_numeric(
char c);
73ORCUS_PSR_DLLPUBLIC
bool is_in(
char c, std::string_view allowed);
84ORCUS_PSR_DLLPUBLIC
const char* parse_numeric(
const char* p,
const char* p_end,
double& value);
98ORCUS_PSR_DLLPUBLIC
const char* parse_integer(
const char* p,
const char* p_end,
long& value);
104 const char*& p,
size_t max_length,
cell_buffer& buffer);
117ORCUS_PSR_DLLPUBLIC
const char* parse_to_closing_single_quote(
118 const char* p,
size_t max_length);
121 const char*& p,
size_t max_length,
cell_buffer& buffer);
134ORCUS_PSR_DLLPUBLIC
const char* parse_to_closing_double_quote(
135 const char* p,
size_t max_length);
146ORCUS_PSR_DLLPUBLIC string_escape_char_t get_string_escape_char_type(
char c);
148ORCUS_PSR_DLLPUBLIC std::string_view trim(std::string_view str);
Definition cell_buffer.hpp:22
Definition parser_global.hpp:33
bool has_control_character
Definition parser_global.hpp:56
bool transient
Definition parser_global.hpp:50