X-Git-Url: https://git.octo.it/?p=collectd.git;a=blobdiff_plain;f=src%2Fliboconfig%2Foconfig.h;h=3b81062e90771035a8814382434786ba2d3a2b5a;hp=840137cc25a7f4a59f5bceee43856d257e7c7795;hb=7111bb6df7628edce3a8e538b386fbe27633a191;hpb=6a68a39a2c6987fdcc94fb1bdd9cc8f598fd9478 diff --git a/src/liboconfig/oconfig.h b/src/liboconfig/oconfig.h index 840137cc..3b81062e 100644 --- a/src/liboconfig/oconfig.h +++ b/src/liboconfig/oconfig.h @@ -32,17 +32,15 @@ /* * Types */ -#define OCONFIG_TYPE_STRING 0 -#define OCONFIG_TYPE_NUMBER 1 +#define OCONFIG_TYPE_STRING 0 +#define OCONFIG_TYPE_NUMBER 1 #define OCONFIG_TYPE_BOOLEAN 2 -struct oconfig_value_s -{ - union - { - char *string; +struct oconfig_value_s { + union { + char *string; double number; - int boolean; + int boolean; } value; int type; }; @@ -50,28 +48,23 @@ typedef struct oconfig_value_s oconfig_value_t; struct oconfig_item_s; typedef struct oconfig_item_s oconfig_item_t; -struct oconfig_item_s -{ - char *key; +struct oconfig_item_s { + char *key; oconfig_value_t *values; - int values_num; + int values_num; - oconfig_item_t *parent; - oconfig_item_t *children; - int children_num; + oconfig_item_t *parent; + oconfig_item_t *children; + int children_num; }; /* * Functions */ -oconfig_item_t *oconfig_parse_fh (FILE *fh); -oconfig_item_t *oconfig_parse_file (const char *file); +oconfig_item_t *oconfig_parse_file(const char *file); -oconfig_item_t *oconfig_clone (const oconfig_item_t *ci); +oconfig_item_t *oconfig_clone(const oconfig_item_t *ci); -void oconfig_free (oconfig_item_t *ci); +void oconfig_free(oconfig_item_t *ci); -/* - * vim: shiftwidth=2:tabstop=8:softtabstop=2 - */ #endif /* OCONFIG_H */