mirror of
https://github.com/zeldaret/ss
synced 2026-05-24 23:21:41 -04:00
26af4db82d
* update from dtk-template and start work towards using clangd * include <a> -> "a" * Update build.yml * remove/add non-trivial class in union warning
17 lines
321 B
C
17 lines
321 B
C
#ifndef RVL_SDK_OS_UTF_H
|
|
#define RVL_SDK_OS_UTF_H
|
|
#include "common.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
|