summaryrefslogtreecommitdiff
path: root/05/string.h
blob: 1ea2a913fb0d41a2c428a1bc14c34ebba309d8e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _STRING_H
#define _STRING_H

#include <stdc_common.h>

void *memset(void *s, int c, size_t n) {
	char *p = s, *end = p + n;
	while (p < end)
		*p++ = c;
	return s;
}



#endif // _STRING_H