summaryrefslogtreecommitdiffstats
path: root/lib/string.h
blob: 9c204dd410870dc97148cdc0ff9934f037a8f80d (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef LIB_STRING_H
#define LIB_STRING_H

#include <stddef.h>

void *memcpy(void * restrict dest, const void * restrict src, size_t n);
void *memmove(void *dest, const void *src, size_t n);
void *memset(void *s, int c, size_t n);

#endif /* LIB_STRING_H */