From 4b178c0feb4c415be36be0e4c0def8c447ed42af Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Fri, 22 Nov 2019 22:17:54 +0100 Subject: Added the most awesome c lib --- src/mlibc/string/strdisp.c | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/mlibc/string/strdisp.c (limited to 'src/mlibc/string/strdisp.c') diff --git a/src/mlibc/string/strdisp.c b/src/mlibc/string/strdisp.c new file mode 100644 index 0000000..6feb4ca --- /dev/null +++ b/src/mlibc/string/strdisp.c @@ -0,0 +1,10 @@ +#include + +void strdisponce(char *str) { + for (size_t 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 -- cgit v1.2.3