cowos/kernel/include/lib/string.h

8 lines
108 B
C

#ifndef STRING_H
#define STRING_H
#include <stddef.h>
size_t strlen(const char* str);
#endif // STRING_H