2
0
mirror of https://github.com/openvswitch/ovs synced 2025-08-31 14:25:26 +00:00

Implement JSON parsing and serialization.

This will be used by the upcoming Open vSwitch configuration database.
This commit is contained in:
Ben Pfaff
2009-11-04 14:55:53 -08:00
parent e7f1bf58e4
commit f38b84ea2b
15 changed files with 2337 additions and 0 deletions

View File

@@ -121,6 +121,10 @@ bool str_to_uint(const char *, int base, unsigned int *);
bool str_to_ulong(const char *, int base, unsigned long *);
bool str_to_ullong(const char *, int base, unsigned long long *);
bool str_to_double(const char *, double *);
int hexit_value(int c);
#ifdef __cplusplus
}
#endif