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

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

size_t strlen(const char *str);

#endif /* KERNEL_STRING */