mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +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];
|
|
}
|
|
}
|