From fbc9a2b25ff5b72e0abab31d7f1ba37f66bbcdfc Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Sat, 28 Mar 2020 15:17:00 -0400 Subject: Add strcmp_array() function --- include/str.h | 1 + 1 file changed, 1 insertion(+) (limited to 'include/str.h') diff --git a/include/str.h b/include/str.h index 5e6d30d..468f674 100644 --- a/include/str.h +++ b/include/str.h @@ -33,5 +33,6 @@ int isempty(char *sptr); int isquoted(char *sptr); char *normalize_space(char *s); char **strdup_array(char **array); +int strcmp_array(const char **a, const char **b); #endif //SPM_STR_H -- cgit