From c2fb23b6b47186e47d983591e47ae4bc153ea4e3 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Fri, 22 Mar 2024 11:29:33 -0400 Subject: Remove split_free() function --- include/str.h | 1 - 1 file changed, 1 deletion(-) (limited to 'include/str.h') diff --git a/include/str.h b/include/str.h index 8b8e71c..abb9d9b 100644 --- a/include/str.h +++ b/include/str.h @@ -24,7 +24,6 @@ void strchrdel(char *sptr, const char *chars); long int strchroff(const char *sptr, int ch); void strdelsuffix(char *sptr, const char *suffix); char** split(char *sptr, const char* delim, size_t max); -void split_free(char **ptr); char *join(char **arr, const char *separator); char *join_ex(char *separator, ...); char *substring_between(char *sptr, const char *delims); -- cgit