feat(unicode): add SUniSGetUTF8

This commit is contained in:
fallenoak 2020-11-22 00:12:24 -06:00
parent d6c0d8a739
commit 4bef36fcae
No known key found for this signature in database
GPG key ID: 7628F8E61AEA070D
3 changed files with 99 additions and 0 deletions

8
storm/Unicode.hpp Normal file
View file

@ -0,0 +1,8 @@
#ifndef STORM_UNICODE_HPP
#define STORM_UNICODE_HPP
#include <cstdint>
uint32_t SUniSGetUTF8(const uint8_t* strptr, int32_t* chars);
#endif