diff options
author | Linus Nordberg <linus@nordberg.se> | 2013-01-22 10:36:57 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2013-01-22 10:37:12 +0100 |
commit | 0be487506195d069c468fa71c32dc2cd50450363 (patch) | |
tree | 802dd53d5467ddb5942ab6209904e168aa59412e /gconfig.h | |
parent | 35311406413e0418112f7c295fee054a3506cbe8 (diff) |
Clean up top dir.
Diffstat (limited to 'gconfig.h')
-rw-r--r-- | gconfig.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/gconfig.h b/gconfig.h deleted file mode 100644 index 463ebdf..0000000 --- a/gconfig.h +++ /dev/null @@ -1,29 +0,0 @@ -#define CONF_STR 1 -#define CONF_CBK 2 -#define CONF_MSTR 3 -#define CONF_BLN 4 -#define CONF_LINT 5 - -#include <stdio.h> - -struct gconffile { - char *path; - FILE *file; - const char *data; - size_t datapos; -}; - -int getconfigline(struct gconffile **cf, char *block, char **opt, char **val, int *conftype); -int getgenericconfig(struct gconffile **cf, char *block, ...); -int pushgconfdata(struct gconffile **cf, const char *data); -FILE *pushgconfpath(struct gconffile **cf, const char *path); -FILE *pushgconffile(struct gconffile **cf, FILE *file, const char *description); -FILE *pushgconfpaths(struct gconffile **cf, const char *path); -int popgconf(struct gconffile **cf); -void freegconfmstr(char **mstr); -void freegconf(struct gconffile **cf); -struct gconffile *openconfigfile(const char *file); - -/* Local Variables: */ -/* c-file-style: "stroustrup" */ -/* End: */ |