aboutsummaryrefslogtreecommitdiff
path: root/read_config_file.c
diff options
context:
space:
mode:
Diffstat (limited to 'read_config_file.c')
-rw-r--r--read_config_file.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/read_config_file.c b/read_config_file.c
index 3e58e6b..bdceef5 100644
--- a/read_config_file.c
+++ b/read_config_file.c
@@ -15,6 +15,8 @@
* "void" ARGTYPE_VOID
* "int" ARGTYPE_INT
* "uint" ARGTYPE_UINT
+ * "long" ARGTYPE_LONG
+ * "ulong" ARGTYPE_ULONG
* "octal" ARGTYPE_OCTAL
* "char" ARGTYPE_CHAR
* "string" ARGTYPE_STRING
@@ -31,6 +33,8 @@ static struct list_of_pt_t {
{ "void", ARGTYPE_VOID },
{ "int", ARGTYPE_INT },
{ "uint", ARGTYPE_UINT },
+ { "long", ARGTYPE_LONG },
+ { "ulong", ARGTYPE_ULONG },
{ "octal", ARGTYPE_OCTAL },
{ "char", ARGTYPE_CHAR },
{ "addr", ARGTYPE_ADDR },
@@ -41,6 +45,8 @@ static struct list_of_pt_t {
{ "string1",ARGTYPE_STRING1 },
{ "string2",ARGTYPE_STRING2 },
{ "string3",ARGTYPE_STRING3 },
+ { "string4",ARGTYPE_STRING4 },
+ { "string5",ARGTYPE_STRING5 },
{ NULL, ARGTYPE_UNKNOWN } /* Must finish with NULL */
};