include with globbing
[radsecproxy.git] / gconfig.h
1 #define CONF_STR 1
2 #define CONF_CBK 2
3 #define CONF_MSTR 3
4
5 struct gconffile {
6     char *path;
7     FILE *file;
8 };
9
10 void getgenericconfig(struct gconffile **cf, char *block, ...);
11 FILE *pushgconffile(struct gconffile **cf, const char *path);
12 FILE *pushgconffiles(struct gconffile **cf, const char *path);
13 FILE *popgconffile(struct gconffile **cf);