summaryrefslogtreecommitdiffstats
path: root/cftest
diff options
context:
space:
mode:
authorlaforge <laforge>2000-09-09 08:36:38 +0000
committerlaforge <laforge>2000-09-09 08:36:38 +0000
commit5b3ff123ce81b525de1d0c952f697c321b023fd3 (patch)
tree830afda55559f6a35febf0a12c6545529e695b33 /cftest
parente07722e46001cbc0e954ac5510163edf1aa610a3 (diff)
config testing stuff added
Diffstat (limited to 'cftest')
-rw-r--r--cftest/cftest.c30
-rw-r--r--cftest/test.txt3
2 files changed, 33 insertions, 0 deletions
diff --git a/cftest/cftest.c b/cftest/cftest.c
new file mode 100644
index 0000000..b99882b
--- /dev/null
+++ b/cftest/cftest.c
@@ -0,0 +1,30 @@
+#include <unistd.h>
+#include <stdio.h>
+#include "conffile.h"
+
+int bla(char *args)
+{
+ printf("bla called: %s\n", args);
+ return 0;
+}
+int main()
+{
+ config_entry_t e,f;
+ memset(&e, 0, sizeof(config_entry_t));
+ strcpy(e.key, "zeile");
+ e.u.parser = bla;
+ e.type = CONFIG_TYPE_CALLBACK;
+ config_register_key(&e);
+
+ strcpy(f.key, "spalte");
+ f.type = CONFIG_TYPE_STRING;
+ f.options |= CONFIG_OPT_MANDATORY;
+ f.u.str.string = (char *) malloc(100);
+ f.u.str.maxlen = 99;
+ config_register_key(&f);
+
+ config_parse_file("test.txt");
+ printf("SPALTE: %s\n", f.u.str.string);
+
+ exit(0);
+}
diff --git a/cftest/test.txt b/cftest/test.txt
new file mode 100644
index 0000000..3c0b663
--- /dev/null
+++ b/cftest/test.txt
@@ -0,0 +1,3 @@
+zeile zeile1
+spalte 0815
+asdfasf