@@ -105,14 +105,14 @@ skipWhitespaces(pointer, stop, line); skipComment(pointer, stop, line); } } -static inline char16_t +static inline of_char16_t parseUnicodeEscape(const char *pointer, const char *stop) { - char16_t ret = 0; + of_char16_t ret = 0; if (pointer + 5 >= stop) return 0xFFFF; if (pointer[0] != '\\' || pointer[1] != 'u') @@ -186,11 +186,11 @@ buffer[i++] = '\t'; (*pointer)++; break; /* Parse Unicode escape sequence */ case 'u':; - char16_t c1, c2; + of_char16_t c1, c2; of_unichar_t c; size_t l; c1 = parseUnicodeEscape(*pointer - 1, stop); if (c1 == 0xFFFF) { @@ -305,11 +305,11 @@ **pointer == '_' || **pointer == '$' || (**pointer & 0x80)) { buffer[i++] = **pointer; (*pointer)++; } else if (**pointer == '\\') { - char16_t c1, c2; + of_char16_t c1, c2; of_unichar_t c; size_t l; if (++(*pointer) >= stop || **pointer != 'u') { free(buffer);