cowos/kernel/include/lib/string.h

9 lines
108 B
C
Raw Normal View History

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