aboutsummaryrefslogtreecommitdiff
path: root/str.h
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2026-03-25 09:57:02 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2026-03-25 09:57:02 -0400
commitd79588bdf85b8c1514019e679c7eefbc9014edd9 (patch)
tree8bbdbc65d04ed8399e55ff0e836d9a9cc70c9396 /str.h
parent72d760a527c38d2e481f7b3204924ab53741e3a8 (diff)
downloaddo-d79588bdf85b8c1514019e679c7eefbc9014edd9.tar.gz
Initial commit
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