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