aboutsummaryrefslogtreecommitdiff
path: root/src/mlibc/string/strinv.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mlibc/string/strinv.c')
-rw-r--r--src/mlibc/string/strinv.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mlibc/string/strinv.c b/src/mlibc/string/strinv.c
index c6dd7fd..71f3355 100644
--- a/src/mlibc/string/strinv.c
+++ b/src/mlibc/string/strinv.c
@@ -1,6 +1,7 @@
#include <mlibc/string.h>
-void strinv(char *str) {
+void strinv(char *str)
+{
size_t s_str = strlen(str);
int iterations = (int) s_str / 2;