From eed77bd2970a00d1394ed027ceca5b646e4671ce Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 17 Jun 2020 18:31:46 +0200 Subject: Started rewrite --- src/userspace/libc/string/strinv.c | 14 -------------- 1 file changed, 14 deletions(-) delete mode 100644 src/userspace/libc/string/strinv.c (limited to 'src/userspace/libc/string/strinv.c') diff --git a/src/userspace/libc/string/strinv.c b/src/userspace/libc/string/strinv.c deleted file mode 100644 index 261e57e..0000000 --- a/src/userspace/libc/string/strinv.c +++ /dev/null @@ -1,14 +0,0 @@ -#include -#include - -void strinv(char *str) -{ - u32 s_str = strlen(str); - - int iterations = (int)s_str / 2; - for (int i = 0; i < iterations; i++) { - char aux = str[i]; - str[i] = str[(s_str - i) - 1]; - str[(s_str - i) - 1] = aux; - } -} \ No newline at end of file -- cgit v1.2.3