diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-06-25 14:44:25 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-06-25 14:44:25 +0200 |
commit | 5e8bbe44301b45046cc8c62c7c67dbd36b7de39e (patch) | |
tree | 93daaaa20116baff58920d71fe3e88756122dc4b | |
parent | m + doc (diff) | |
download | argparser-5e8bbe44301b45046cc8c62c7c67dbd36b7de39e.tar.gz argparser-5e8bbe44301b45046cc8c62c7c67dbd36b7de39e.tar.bz2 argparser-5e8bbe44301b45046cc8c62c7c67dbd36b7de39e.tar.xz |
m
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | src/argparser.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/argparser.c b/src/argparser.c index 85992af..f84efe6 100644 --- a/src/argparser.c +++ b/src/argparser.c @@ -20,6 +20,7 @@ #include <stdio.h> + #define true 1 #define false 0 #define null 0 @@ -29,6 +30,7 @@ #define VARIADIC 2 + static void sort(char** list, long count); static long cmp(char* a, char* b); @@ -165,6 +167,7 @@ long args_options_size; // HashMap<String, String[]> opts = new HashMap<String, String[]>(); + /** * Constructor. * The short description is printed on same line as the program name |