| 3951 | //----------------------------------------------------------------------------- |
| 3952 | |
| 3953 | static unsigned int stb_decompress_length(const unsigned char *input) |
| 3954 | { |
| 3955 | return (input[8] << 24) + (input[9] << 16) + (input[10] << 8) + input[11]; |
| 3956 | } |
| 3957 | |
| 3958 | static unsigned char *stb__barrier_out_e, *stb__barrier_out_b; |
| 3959 | static const unsigned char *stb__barrier_in_b; |
no outgoing calls
no test coverage detected