diff options
Diffstat (limited to 'src/kernel/lib/string/strdisp.c')
-rw-r--r-- | src/kernel/lib/string/strdisp.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/kernel/lib/string/strdisp.c b/src/kernel/lib/string/strdisp.c deleted file mode 100644 index dada5d0..0000000 --- a/src/kernel/lib/string/strdisp.c +++ /dev/null @@ -1,14 +0,0 @@ -#include <lib/string.h> - -void strdisponce(char *str) -{ - for (u32 i = sizeof(str) + 2; i > 0; i--) - str[i] = str[i - 1]; - str[0] = 0; -} - -void strdisp(char *str, int n) -{ - for (int i = 0; i < n; i++) - strdisponce(str); -}
\ No newline at end of file |