44void save_str(
char *dst,
const char *src,
const int line_num);
46void save_str(std::string &dst,
const char *src,
const int);
48bool is_keyword(std::string
id,
const std::string &keyword);
57int check_int16(
const char *val);
58int check_uint16(
const char *val);
60int check_int32(
const char *val);
61int check_uint32(
const char *val);
63int check_int64(
const char *val);
64int check_uint64(
const char *val);
66int check_float32(
const char *val);
67int check_float64(
const char *val);
80int check_int32(
const char *val,
int &v);
81int check_uint32(
const char *val,
unsigned int &v);
83int check_float64(
const char *val,
double &v);
91int get_int32(
const char *val);
92unsigned int get_uint32(
const char *val);
93long long get_int64(
const char *val);
94unsigned long long get_uint64(
const char *val);
95double get_float64(
const char *val);
int check_url(const char *)
Is the value a valid URL?
int check_byte(const char *val)
Is the value a valid byte?
top level DAP object to house generic methods
void save_str(string &dst, const char *src, const int)
Save a string to a temporary variable during the parse.