about summary refs log tree commit diff stats
path: root/src/tools/parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/parser.h')
-rw-r--r--src/tools/parser.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/tools/parser.h b/src/tools/parser.h
index 4787b148..d1b6f7bf 100644
--- a/src/tools/parser.h
+++ b/src/tools/parser.h
@@ -38,11 +38,11 @@
 
 #include <glib.h>
 
-gchar** parse_args(const char *const inp, int min, int max, gboolean *result);
-gchar** parse_args_with_freetext(const char *const inp, int min, int max, gboolean *result);
-int count_tokens(const char *const string);
-char* get_start(const char *const string, int tokens);
-GHashTable* parse_options(gchar **args, gchar **keys, gboolean *res);
-void options_destroy(GHashTable *options);
+gchar** parse_args(const char* const inp, int min, int max, gboolean* result);
+gchar** parse_args_with_freetext(const char* const inp, int min, int max, gboolean* result);
+int count_tokens(const char* const string);
+char* get_start(const char* const string, int tokens);
+GHashTable* parse_options(gchar** args, gchar** keys, gboolean* res);
+void options_destroy(GHashTable* options);
 
 #endif