| 6575 | } stbi__gif; |
| 6576 | |
| 6577 | static int stbi__gif_test_raw(stbi__context *s) |
| 6578 | { |
| 6579 | int sz; |
| 6580 | if (stbi__get8(s) != 'G' || stbi__get8(s) != 'I' || stbi__get8(s) != 'F' || stbi__get8(s) != '8') return 0; |
| 6581 | sz = stbi__get8(s); |
| 6582 | if (sz != '9' && sz != '7') return 0; |
| 6583 | if (stbi__get8(s) != 'a') return 0; |
| 6584 | return 1; |
| 6585 | } |
| 6586 | |
| 6587 | static int stbi__gif_test(stbi__context *s) |
| 6588 | { |
no test coverage detected