about summary refs log tree commit diff stats
path: root/src/tools/parser.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2013-07-11 22:57:35 +0100
committerJames Booth <boothj5@gmail.com>2013-07-11 22:57:35 +0100
commit36265dde2fd70f994bc8ee2b2cdff9a398ceff1d (patch)
tree4df05c0207d07e8aa4a16aa73c5f2b05ee46677d /src/tools/parser.h
parent907beb55f6dba952b6b07579c919fad251b7a0c0 (diff)
downloadprofani-tty-36265dde2fd70f994bc8ee2b2cdff9a398ceff1d.tar.gz
Moved functions to parser.c, moved parser to tools
Diffstat (limited to 'src/tools/parser.h')
-rw-r--r--src/tools/parser.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/tools/parser.h b/src/tools/parser.h
new file mode 100644
index 00000000..6f00cc90
--- /dev/null
+++ b/src/tools/parser.h
@@ -0,0 +1,33 @@
+/*
+ * parser.h
+ *
+ * Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
+ *
+ * This file is part of Profanity.
+ *
+ * Profanity is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Profanity is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Profanity.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ */
+
+#ifndef PARSER_H
+#define PARSER_H
+
+#include <glib.h>
+
+gchar** parse_args(const char * const inp, int min, int max);
+gchar** parse_args_with_freetext(const char * const inp, int min, int max);
+int count_tokens(char *string);
+char* get_start(char *string, int tokens);
+
+#endif