Return free memory more aggressively.
[radsecproxy.git] / gconfig.h
index 48e1e94..3cb34b3 100644 (file)
--- a/gconfig.h
+++ b/gconfig.h
@@ -1,9 +1,14 @@
+/* Copyright (c) 2007-2008, UNINETT AS */
+/* See LICENSE for licensing information. */
+
 #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;
@@ -18,5 +23,10 @@ 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: */