aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/string/strdisp.c
blob: e63f0385aa927e25c50433a5792d48b06e3b5c29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <kernel/lib/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);
}