Applied coding style to src/tools/

This commit is contained in:
James Booth
2015-10-25 22:47:42 +00:00
parent 39d183fe23
commit 0017098400
6 changed files with 33 additions and 33 deletions

View File

@@ -37,11 +37,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);
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
#endif