libdap Updated for version 3.21.1
libdap4 is an implementation of OPeNDAP's DAP protocol.
|
Can the given string be converted into a byte, ...? More...
Functions | |
int | libdap::check_byte (const char *val) |
Is the value a valid byte? | |
int | libdap::check_float32 (const char *val) |
int | libdap::check_float64 (const char *val) |
int | libdap::check_int16 (const char *val) |
int | libdap::check_int32 (const char *val) |
int | libdap::check_int64 (const char *val) |
int | libdap::check_uint16 (const char *val) |
int | libdap::check_uint32 (const char *val) |
int | libdap::check_uint64 (const char *val) |
int | libdap::check_url (const char *val) |
Is the value a valid URL? | |
Can the given string be converted into a byte, ...?
int libdap::check_byte | ( | const char * | val | ) |
Is the value a valid byte?
Check to see if val
is a valid byte value. If not, generate an error message using parser_error()
. There are two versions of check_byte()
, one which calls parser_error()
and prints an error message to stderr an one which calls parser_error()
and generates and Error object.
Definition at line 178 of file parser-util.cc.
int libdap::check_float32 | ( | const char * | val | ) |
Definition at line 412 of file parser-util.cc.
int libdap::check_float64 | ( | const char * | val | ) |
Definition at line 443 of file parser-util.cc.
int libdap::check_int16 | ( | const char * | val | ) |
Definition at line 202 of file parser-util.cc.
int libdap::check_int32 | ( | const char * | val | ) |
Definition at line 232 of file parser-util.cc.
int libdap::check_int64 | ( | const char * | val | ) |
Definition at line 350 of file parser-util.cc.
int libdap::check_uint16 | ( | const char * | val | ) |
Definition at line 217 of file parser-util.cc.
int libdap::check_uint32 | ( | const char * | val | ) |
Definition at line 257 of file parser-util.cc.
int libdap::check_uint64 | ( | const char * | val | ) |
Definition at line 380 of file parser-util.cc.
int libdap::check_url | ( | const char * | val | ) |
Is the value a valid URL?
Currently this function always returns true.
Definition at line 653 of file parser-util.cc.