summaryrefslogtreecommitdiff
path: root/ccc/stringutil.h
diff options
context:
space:
mode:
Diffstat (limited to 'ccc/stringutil.h')
-rw-r--r--ccc/stringutil.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/ccc/stringutil.h b/ccc/stringutil.h
new file mode 100644
index 0000000..153068a
--- /dev/null
+++ b/ccc/stringutil.h
@@ -0,0 +1,13 @@
+#ifndef STRINGUTIL_H
+#define STRINGUTIL_H
+
+#include <string.h>
+#include <stdbool.h>
+
+
+char* strend(char* s);
+bool endswith(char* s, char* suff);
+
+
+#endif
+