2023-04-20 22:03:39 +00:00
|
|
|
// This file is part of noxos and licensed under the MIT open source license
|
|
|
|
|
2023-05-29 15:40:48 +00:00
|
|
|
#ifndef LIBNX_STRING_H
|
|
|
|
#define LIBNX_STRING_H
|
2023-04-20 22:03:39 +00:00
|
|
|
|
2023-05-29 15:40:48 +00:00
|
|
|
#include "public/nox/stdtypes.h"
|
2023-04-20 22:03:39 +00:00
|
|
|
|
|
|
|
typedef const char* string_t;
|
|
|
|
|
|
|
|
uint64_t strlen(string_t str);
|
|
|
|
|
2023-05-29 15:40:48 +00:00
|
|
|
#endif //LIBNX_STRING_H
|