aboutsummaryrefslogtreecommitdiff
path: root/str.h
diff options
context:
space:
mode:
Diffstat (limited to 'str.h')
-rw-r--r--str.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/str.h b/str.h
new file mode 100644
index 0000000..76fad0f
--- /dev/null
+++ b/str.h
@@ -0,0 +1,15 @@
+//
+// Created by jhunk on 3/21/26.
+//
+
+#ifndef DO_STR_H
+#define DO_STR_H
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+
+char** split(char *_sptr, const char* delim, size_t max, size_t *num);
+
+#endif //DO_STR_H