Files
Aerofoil/PortabilityLayer/MacRoman.h

15 lines
258 B
C
Raw Normal View History

2019-12-12 23:37:40 -05:00
#pragma once
#include <stdint.h>
2019-12-12 23:37:40 -05:00
namespace PortabilityLayer
{
namespace MacRoman
2019-12-12 23:37:40 -05:00
{
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];
}
}