aboutsummaryrefslogtreecommitdiffstats
path: root/src/argparser.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/argparser.c')
-rw-r--r--src/argparser.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/argparser.c b/src/argparser.c
index f84efe6..aa7bfe1 100644
--- a/src/argparser.c
+++ b/src/argparser.c
@@ -20,17 +20,18 @@
#include <stdio.h>
-
+/* Code style constants */
#define true 1
#define false 0
#define null 0
+/* Constants */
#define ARGUMENTLESS 0
#define ARGUMENTED 1
#define VARIADIC 2
-
-
+/* Prototype for static functions */
+static void _sort(char** list, long count, char** temp);
static void sort(char** list, long count);
static long cmp(char* a, char* b);