Fix compiler warnings regarding const modifiers

This commit is contained in:
2026-06-09 13:49:05 +02:00
parent 9ea40b4793
commit 78ee3dc755
7 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -33,9 +33,9 @@ int mime_is_text(const char *restrict type);
int strcpy_rem_webroot(char *dst, const char *str, const char *webroot);
int str_trim(char **start, char **end);
int str_trim(const char **start, const char **end);
int str_trim_lws(char **start, char **end);
int str_trim_lws(const char **start, const char **end);
int streq(const char *restrict str1, const char *restrict str2);