45void save_str(
char *dst,
const char *src,
const int line_num);
47void save_str(std::string &dst,
const char *src,
const int);
49bool is_keyword(std::string
id,
const std::string &keyword);
58int check_int16(
const char *val);
59int check_uint16(
const char *val);
61int check_int32(
const char *val);
62int check_uint32(
const char *val);
64int check_int64(
const char *val);
65int check_uint64(
const char *val);
67int check_float32(
const char *val);
68int check_float64(
const char *val);
81int check_int32(
const char *val,
int &v);
82int check_uint32(
const char *val,
unsigned int &v);
84int check_float64(
const char *val,
double &v);
92int get_int32(
const char *val);
93unsigned int get_uint32(
const char *val);
94long long get_int64(
const char *val);
95unsigned long long get_uint64(
const char *val);
96double 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.