From e1a47b385cb93c1b0cc759604ad06b7bdd48f15b Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sun, 24 May 2020 10:49:34 -0400 Subject: Add string functions: * isdigit_s() * tolower_s() --- include/str.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/str.h') diff --git a/include/str.h b/include/str.h index 468f674..ae54997 100644 --- a/include/str.h +++ b/include/str.h @@ -34,5 +34,7 @@ int isquoted(char *sptr); char *normalize_space(char *s); char **strdup_array(char **array); int strcmp_array(const char **a, const char **b); +int isdigit_s(char *s); +char *tolower_s(char *s); #endif //SPM_STR_H -- cgit