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