mirror of
https://github.com/zeldaret/ss
synced 2026-05-26 23:47:22 -04:00
20 lines
342 B
C
20 lines
342 B
C
#ifndef RVL_SDK_OS_UTF_H
|
|
#define RVL_SDK_OS_UTF_H
|
|
|
|
#include "common.h"
|
|
#include "wchar.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
const u8 *OSUTF8to32(const u8 *utf8, u32 *utf32);
|
|
const wchar_t *OSUTF16to32(const wchar_t *utf16, u32 *utf32);
|
|
u8 OSUTF32toANSI(u32 utf32);
|
|
wchar_t OSUTF32toSJIS(u32 utf32);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|