| 6334 | |
| 6335 | #ifndef STBI_NO_PIC |
| 6336 | static int stbi__pic_is4(stbi__context *s,const char *str) |
| 6337 | { |
| 6338 | int i; |
| 6339 | for (i=0; i<4; ++i) |
| 6340 | if (stbi__get8(s) != (stbi_uc)str[i]) |
| 6341 | return 0; |
| 6342 | |
| 6343 | return 1; |
| 6344 | } |
| 6345 | |
| 6346 | static int stbi__pic_test_core(stbi__context *s) |
| 6347 | { |
no test coverage detected