libraries/libnx/inc/public/nox/string.h

13 lines
246 B
C
Raw Normal View History

// 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