summaryrefslogtreecommitdiff
path: root/gconfig.h
blob: 55e8efea914ff1b01d9592afeafd617be4505323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#define CONF_STR 1
#define CONF_CBK 2
#define CONF_MSTR 3
#define CONF_BLN 4

struct gconffile {
    char *path;
    FILE *file;
};

int getconfigline(struct gconffile **cf, char *block, char **opt, char **val, int *conftype);
int getgenericconfig(struct gconffile **cf, char *block, ...);
FILE *pushgconffile(struct gconffile **cf, const char *path);
FILE *pushgconffiles(struct gconffile **cf, const char *path);
FILE *popgconffile(struct gconffile **cf);
struct gconffile *openconfigfile(const char *file);