mirror of
https://github.com/encounter/osdev.git
synced 2026-07-10 12:18:43 -07:00
11 lines
198 B
C
11 lines
198 B
C
#pragma once
|
|
|
|
#include <common.h>
|
|
|
|
#define IS_CODEUNIT(c) ((unsigned)(c)-0xdf80 < 0x80)
|
|
|
|
typedef __WCHAR_TYPE__ wchar_t;
|
|
|
|
int wctomb(char *s, wchar_t wc);
|
|
|
|
size_t wcrtomb(char *__restrict, wchar_t); |