summaryrefslogtreecommitdiff
path: root/purgatory/include/string.h
blob: 87cc4e1c02aa4ba6d139c25b8a4d6dc6d8857322 (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef STRING_H
#define STRING_H

size_t strnlen(const char *s, size_t max);
void* memset(void* s, int c, size_t n);
void* memcpy(void *dest, const void *src, size_t len);
int memcmp(void *src1, void *src2, size_t len);


#endif /* STRING_H */