mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-01-10 03:00:52 +00:00
9 lines
376 B
C
9 lines
376 B
C
|
#pragma once
|
||
|
|
||
|
int utf8_encode(int32_t codepoint, uint8_t *buffer, int *size);
|
||
|
int utf8_decode(const uint8_t *src, int *size);
|
||
|
int GetCharFromString(const uint8_t *&string);
|
||
|
const char *MakeUTF8(const char *outline, int *numchars = nullptr); // returns a pointer to a static buffer, assuming that its caller will immediately process the result.
|
||
|
|
||
|
extern uint16_t win1252map[];
|