summaryrefslogtreecommitdiffstats
path: root/purgatory/include/string.h
blob: 14e172dea78373b92ae72d51c1b5ff15aac73826 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef STRING_H
#define STRING_H

#include <stddef.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 */