mirror of
https://github.com/elasota/Aerofoil.git
synced 2026-03-01 13:25:23 +00:00
15 lines
259 B
C
15 lines
259 B
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <stdint.h>
|
||
|
|
|
||
|
|
namespace PortabilityLayer
|
||
|
|
{
|
||
|
|
namespace MacLatin
|
||
|
|
{
|
||
|
|
extern const uint16_t g_toUnicode[256];
|
||
|
|
extern const uint8_t g_stripDiacritic[256];
|
||
|
|
extern const uint8_t g_toLower[256];
|
||
|
|
extern const uint8_t g_toUpper[256];
|
||
|
|
}
|
||
|
|
}
|