about summary refs log tree commit diff stats
path: root/src/parser.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2012-11-18 02:40:49 +0000
committerJames Booth <boothj5@gmail.com>2012-11-18 02:40:49 +0000
commit78dd79f6a03827cd9d483a24b122b066735c3606 (patch)
tree98d78bc1f2c60ce4358696882b020c9bc5cc4260 /src/parser.h
parent0cec188eb5445283e5f1442439a83c36c071c678 (diff)
downloadprofani-tty-78dd79f6a03827cd9d483a24b122b066735c3606.tar.gz
Commands now use parser function to handle parameters
Diffstat (limited to 'src/parser.h')
-rw-r--r--src/parser.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parser.h b/src/parser.h
index a8a52e22..6e274d04 100644
--- a/src/parser.h
+++ b/src/parser.h
@@ -25,7 +25,7 @@
 
 #include <glib.h>
 
-gchar** parse_args(const char * const inp, int min, int max, int *num);
-gchar** parse_args_with_freetext(const char * const inp, int min, int max, int *num);
+gchar** parse_args(const char * const inp, int min, int max);
+gchar** parse_args_with_freetext(const char * const inp, int min, int max);
 
 #endif