|
| struct string * | allocString (void) |
| |
| struct string * | makeString (int l, const char *s) |
| |
| struct string * | makeStringExt (int l, const char *s, char fmt) |
| |
| struct string * | makeStringArray (int l, const char *s, char fmt) |
| |
| void | appendString (struct string *s, const char *a) |
| |
| void | concatString (struct string *s, const struct string *a) |
| |
| isc_boolean_t | eqString (const struct string *s, const struct string *o) |
| |
| struct string * | quote (struct string *) |
| |
| | TAILQ_HEAD (comments, comment) |
| |
| struct comment * | createComment (const char *line) |
| |
| | TAILQ_HEAD (list, element) |
| |
| | TAILQ_HEAD (map, element) |
| |
| int64_t | intValue (const struct element *e) |
| |
| double | doubleValue (const struct element *e) |
| |
| isc_boolean_t | boolValue (const struct element *e) |
| |
| struct string * | stringValue (struct element *e) |
| |
| struct list * | listValue (struct element *e) |
| |
| struct map * | mapValue (struct element *e) |
| |
| struct element * | create (void) |
| |
| struct element * | createInt (int64_t i) |
| |
| struct element * | createDouble (double d) |
| |
| struct element * | createBool (isc_boolean_t b) |
| |
| struct element * | createNull (void) |
| |
| struct element * | createString (const struct string *s) |
| |
| struct element * | createList (void) |
| |
| struct element * | createMap (void) |
| |
| void | resetInt (struct element *e, int64_t i) |
| |
| void | resetDouble (struct element *e, double d) |
| |
| void | resetBool (struct element *e, isc_boolean_t b) |
| |
| void | resetNull (struct element *e) |
| |
| void | resetString (struct element *e, const struct string *s) |
| |
| void | resetList (struct element *e) |
| |
| void | resetMap (struct element *e) |
| |
| void | resetBy (struct element *e, struct element *o) |
| |
| struct element * | listGet (struct element *l, int i) |
| |
| void | listSet (struct element *l, struct element *e, int i) |
| |
| void | listPush (struct element *l, struct element *e) |
| |
| void | listRemove (struct element *l, int i) |
| |
| size_t | listSize (const struct element *l) |
| |
| void | concat (struct element *l, struct element *o) |
| |
| struct element * | mapGet (struct element *m, const char *k) |
| |
| void | mapSet (struct element *m, struct element *e, const char *k) |
| |
| void | mapRemove (struct element *m, const char *k) |
| |
| isc_boolean_t | mapContains (const struct element *m, const char *k) |
| |
| size_t | mapSize (const struct element *m) |
| |
| void | merge (struct element *m, struct element *o) |
| |
| const char * | type2name (int t) |
| |
| int | name2type (const char *n) |
| |
| void | print (FILE *fp, const struct element *e, isc_boolean_t skip, unsigned indent) |
| |
| void | printList (FILE *fp, const struct list *l, isc_boolean_t skip, unsigned indent) |
| |
| void | printMap (FILE *fp, const struct map *m, isc_boolean_t skip, unsigned indent) |
| |
| void | printString (FILE *fp, const struct string *s) |
| |
| isc_boolean_t | skip_to_end (const struct element *e) |
| |
| struct element * | copy (struct element *e) |
| |
| struct element * | copyList (struct element *l) |
| |
| struct element * | copyMap (struct element *m) |
| |
| | TAILQ_HEAD (handles, handle) |
| |
| struct handle * | mapPop (struct element *) |
| |
| void | derive (struct handle *, struct handle *) |
| |
| struct string * | hexaValue (struct element *) |
| |
| struct element * | createHexa (struct string *) |
| |