aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
Diffstat (limited to 'include')
-rw-r--r--include/stringop.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stringop.h b/include/stringop.h
index e3f4f0f7..8d7089e9 100644
--- a/include/stringop.h
+++ b/include/stringop.h
@@ -12,7 +12,7 @@ char *lenient_strcat(char *dest, const char *src);
12char *lenient_strncat(char *dest, const char *src, size_t len); 12char *lenient_strncat(char *dest, const char *src, size_t len);
13 13
14// strcmp that also handles null pointers. 14// strcmp that also handles null pointers.
15int lenient_strcmp(char *a, char *b); 15int lenient_strcmp(const char *a, const char *b);
16 16
17// Simply split a string with delims, free with `list_free_items_and_destroy` 17// Simply split a string with delims, free with `list_free_items_and_destroy`
18list_t *split_string(const char *str, const char *delims); 18list_t *split_string(const char *str, const char *delims);