| 2154 | static unsigned int stb_decompress(unsigned char* output, const unsigned char* input, unsigned int length); |
| 2155 | static const char* GetDefaultCompressedFontDataTTFBase85(); |
| 2156 | static unsigned int Decode85Byte(char c) { return c >= '\\' ? c - 36 : c - 35; } |
| 2157 | static void Decode85(const unsigned char* src, unsigned char* dst) |
| 2158 | { |
| 2159 | while (*src) |