aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorPaul Riou <paul.riou@protonmail.com>2020-12-03 19:17:42 +0000
committerSimon Ser <contact@emersion.fr>2020-12-04 10:49:49 +0100
commit4583feee5969a11383a24187cff2a47abb02fa47 (patch)
treeb5a81cd70444235397fa6ab233e1903b1beda1f1 /include
parent32b93ef6ea394a8f0c564d4bded2806c7b595696 (diff)
downloadsway-4583feee5969a11383a24187cff2a47abb02fa47.tar.xz
common: make 'lenient_strcmp' arguments const
Prevents build failures when calling the function with 'const char *' arguments. This is also more accurate since the function is not expected to modify the args.
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);
char *lenient_strncat(char *dest, const char *src, size_t len);
// strcmp that also handles null pointers.
-int lenient_strcmp(char *a, char *b);
+int lenient_strcmp(const char *a, const char *b);
// Simply split a string with delims, free with `list_free_items_and_destroy`
list_t *split_string(const char *str, const char *delims);