summaryrefslogtreecommitdiffstats
path: root/src/lib/string.c
blob: b84de213fdccffdbcd2ade5b854daa516ecf4115 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <string.h>

void* memset(void* s, int c, size_t n)
{
    char* _s = s;
    while(n)
    {
	*_s = c;
	_s++; n--;
    }
}
OpenPOWER on IntegriCloud