| 593 | stb_uint stb_compress(stb_uchar *out, stb_uchar *in, stb_uint len); |
| 594 | |
| 595 | char Encode85Byte(unsigned int x) |
| 596 | { |
| 597 | x = (x % 85) + 35; |
| 598 | return (char)((x >= (uint32_t)'\\') ? x + 1 : x); |
| 599 | } |
| 600 | |
| 601 | /* 03/03/2020 23h38 it work like a charm (Wouhoooooo!!) |
| 602 | will generate cpp fille with/without header |
no outgoing calls
no test coverage detected