| 6958 | |
| 6959 | #ifndef STBI_NO_PIC |
| 6960 | static int stbi__pic_is4(stbi__context* s, const char* str) { |
| 6961 | int i; |
| 6962 | for (i = 0; i < 4; ++i) |
| 6963 | if (stbi__get8(s) != (stbi_uc)str[i]) |
| 6964 | return 0; |
| 6965 | |
| 6966 | return 1; |
| 6967 | } |
| 6968 | |
| 6969 | static int stbi__pic_test_core(stbi__context* s) { |
| 6970 | int i; |
no test coverage detected