From d79588bdf85b8c1514019e679c7eefbc9014edd9 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Wed, 25 Mar 2026 09:57:02 -0400 Subject: Initial commit --- str.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 str.h (limited to 'str.h') 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 +#include +#include + + +char** split(char *_sptr, const char* delim, size_t max, size_t *num); + +#endif //DO_STR_H -- cgit