diff options
author | Joseph Hunkeler <jhunkeler@users.noreply.github.com> | 2020-03-28 15:24:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-28 15:24:17 -0400 |
commit | 81a87ac139e26b1746c0370a4453bf5938e8eba9 (patch) | |
tree | 32774a6d5601a06557a862a2e223b3f0be4b3438 /include/str.h | |
parent | 5048b9046afe0b48377a9862da9148165f7a0890 (diff) | |
parent | 04bfb70f4599c72f53406fd5fcfda570e30859fe (diff) | |
download | spmc-81a87ac139e26b1746c0370a4453bf5938e8eba9.tar.gz |
Merge pull request #7 from jhunkeler/strdup_array-test
strdup_array test
Diffstat (limited to 'include/str.h')
-rw-r--r-- | include/str.h | 1 |
1 files changed, 1 insertions, 0 deletions
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 |