summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/tool/strings.h')
-rw-r--r--src/tool/strings.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/tool/strings.h b/src/tool/strings.h
new file mode 100644
index 0000000..6e6e211
--- /dev/null
+++ b/src/tool/strings.h
@@ -0,0 +1,19 @@
+#ifndef _ZoO_TOOL_STRINGS_H_
+#define _ZoO_TOOL_STRINGS_H_
+
+#include "strings_types.h"
+
+void ZoO_strings_initialize (struct ZoO_strings s [const restrict static 1]);
+
+void ZoO_strings_finalize (struct ZoO_strings s [const restrict static 1]);
+
+int ZoO_strings_parse
+(
+ struct ZoO_strings s [const static 1],
+ size_t const input_size,
+ ZoO_char input [const restrict],
+ ZoO_index const punctuations_count,
+ const ZoO_char punctuations [const restrict static punctuations_count]
+);
+
+#endif