summaryrefslogtreecommitdiffstats
path: root/kernel/string.h
blob: 3c628b3f7c4a5a1e499d70558d88013b7731b68c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifndef KERNEL_STRING
#define KERNEL_STRING

#include <stddef.h>
#include <stdint.h>

size_t strlen(const char *str);
void *memcpy(void *dest, const void *src, size_t n);
void *memset(void *dest, int c, size_t n);
void *memmove(void *dest, const void *src, size_t n);

#endif /* KERNEL_STRING */