| 2099 | static unsigned int stb_decompress(unsigned char* output, const unsigned char* input, unsigned int length); |
| 2100 | static const char* GetDefaultCompressedFontDataTTFBase85(); |
| 2101 | static unsigned int Decode85Byte(char c) { return c >= '\\' ? c-36 : c-35; } |
| 2102 | static void Decode85(const unsigned char* src, unsigned char* dst) |
| 2103 | { |
| 2104 | while (*src) |