aboutsummaryrefslogtreecommitdiff
path: root/include/string.h
blob: b829978e3dcbc98b99fd2d9dc37e2dccd859e2ea (plain)
1
2
3
4
5
#include <stddef.h>
size_t strlen(const char*);
void* memset(void*, int, size_t);
void* memcpy(void*, void*, size_t);
char* strdup(const char*);