94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
static const unsigned char page21[] = {
0x99
};
static const uint8_t page21Start = 0x22;
bool
of_unicode_to_windows_1252(const of_unichar_t *input, unsigned char *output,
size_t length, bool lossy)
{
for (size_t i = 0; i < length; i++) {
of_unichar_t c = input[i];
if OF_UNLIKELY (c > 0x7F) {
uint8_t idx;
if OF_UNLIKELY (c > 0xFFFF) {
if (lossy) {
output[i] = '?';
|
|
|
|
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
static const unsigned char page21[] = {
0x99
};
static const uint8_t page21Start = 0x22;
bool
of_unicode_to_windows_1252(const OFUnichar *input, unsigned char *output,
size_t length, bool lossy)
{
for (size_t i = 0; i < length; i++) {
OFUnichar c = input[i];
if OF_UNLIKELY (c > 0x7F) {
uint8_t idx;
if OF_UNLIKELY (c > 0xFFFF) {
if (lossy) {
output[i] = '?';
|