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