implemented config file stack; to be used for include support
[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(FILE *f, char *block, ...);
11 FILE *pushgconffile(struct gconffile **cf, const char *path);
12 FILE *popgconffile(struct gconffile **cf);