fix charset build

This commit is contained in:
a1ive 2025-02-13 21:50:15 +09:00
parent ce7091bf7d
commit 64f231b73e
No known key found for this signature in database
GPG Key ID: DA9BACF4F462B55D
2 changed files with 2 additions and 1 deletions

View File

@ -16,7 +16,7 @@
* along with ntloader. If not, see <http://www.gnu.org/licenses/>.
*/
#include <charset.h>
#include "charset.h"
static inline int
is_utf8_trailing_octet (uint8_t c)

View File

@ -20,6 +20,7 @@
#define _CHARSET_H 1
#include <stdint.h>
#include <stddef.h>
uint16_t *
utf8_to_ucs2 (uint16_t *dest, size_t destsize, const uint8_t *src);