summaryrefslogtreecommitdiffstats
path: root/src/utils.h
diff options
context:
space:
mode:
authorAlejandro Sirgo Rica <asirgo@soleta.eu>2024-07-15 16:36:45 +0200
committerAlejandro Sirgo Rica <asirgo@soleta.eu>2024-07-15 16:36:45 +0200
commitdf52acba04e85191b0fc7f10b7853fe17fb25260 (patch)
treeff8228b009dd7701a95d8fa1c2db4e7d52b51c40 /src/utils.h
parent59ccaaebf616bc0be96af3b9b8c0be6828113edc (diff)
src: add str_toupper and str_tolower functions
Add auxiliar string case change functions.
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/utils.h b/src/utils.h
index e32d006..45ecf23 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -1,6 +1,7 @@
#ifndef _OG_UTILS_H
#define _OG_UTILS_H
-const char *str_toupper(char *str);
+void str_toupper(char *str);
+void str_tolower(char *str);
#endif