diff options
Diffstat (limited to 'LibC/string.h')
-rw-r--r-- | LibC/string.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/LibC/string.h b/LibC/string.h new file mode 100644 index 0000000000..21e4ccf287 --- /dev/null +++ b/LibC/string.h @@ -0,0 +1,10 @@ +#pragma once + +#include "types.h" + +extern "C" { + +size_t strlen(const char*); + +} + |