| 5897 | } |
| 5898 | |
| 5899 | static int stbi__bmp_test(stbi__context* s) { |
| 5900 | int r = stbi__bmp_test_raw(s); |
| 5901 | stbi__rewind(s); |
| 5902 | return r; |
| 5903 | } |
| 5904 | |
| 5905 | // returns 0..31 for the highest set bit |
| 5906 | static int stbi__high_bit(unsigned int z) { |
no test coverage detected