// This file is part of noxos and licensed under the MIT open source license #ifndef NOX_LIBC_STRING_H #define NOX_LIBC_STRING_H #include "nox/stdtypes.h" typedef const char* string_t; uint64_t strlen(string_t str); #endif //NOX_LIBC_STRING_H