| 2527 | static unsigned int stb_decompress(unsigned char* output, const unsigned char* input, unsigned int length); |
| 2528 | static const char* GetDefaultCompressedFontDataTTFBase85(); |
| 2529 | static unsigned int Decode85Byte(char c) { return c >= '\\' ? c-36 : c-35; } |
| 2530 | static void Decode85(const unsigned char* src, unsigned char* dst) |
| 2531 | { |
| 2532 | while (*src) |