aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/string/strinv.c
diff options
context:
space:
mode:
authorMarvin Borner2020-05-06 19:04:05 +0200
committerMarvin Borner2020-05-06 19:04:05 +0200
commitd94ffac4a584dc7a4f6f2ec567b8caab05ce9253 (patch)
tree559cd596a0a407d4b40c1d12d3c6a0686494da16 /src/kernel/lib/string/strinv.c
parent1a8563a05608b5b5e27eada44cf4790926001c68 (diff)
New build parameters and shared includes
This changes many files but I've just applied some replace commands.. So - nothing special!
Diffstat (limited to 'src/kernel/lib/string/strinv.c')
-rw-r--r--src/kernel/lib/string/strinv.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/lib/string/strinv.c b/src/kernel/lib/string/strinv.c
index 071a99d..90cb581 100644
--- a/src/kernel/lib/string/strinv.c
+++ b/src/kernel/lib/string/strinv.c
@@ -1,8 +1,8 @@
-#include <kernel/lib/string.h>
+#include <lib/string.h>
void strinv(char *str)
{
- size_t s_str = strlen(str);
+ u32 s_str = strlen(str);
int iterations = (int)s_str / 2;
for (int i = 0; i < iterations; i++) {