aboutsummaryrefslogtreecommitdiff
path: root/src/mlibc/string/strdisp.c
blob: 6feb4ca4669013399294dd3c1b886fdc85d1819b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#include <mlibc/string.h>

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);
}