| 6967 | } |
| 6968 | |
| 6969 | static int stbi__pic_test_core(stbi__context* s) { |
| 6970 | int i; |
| 6971 | |
| 6972 | if (!stbi__pic_is4(s, "\x53\x80\xF6\x34")) |
| 6973 | return 0; |
| 6974 | |
| 6975 | for (i = 0; i < 84; ++i) |
| 6976 | stbi__get8(s); |
| 6977 | |
| 6978 | if (!stbi__pic_is4(s, "PICT")) |
| 6979 | return 0; |
| 6980 | |
| 6981 | return 1; |
| 6982 | } |
| 6983 | |
| 6984 | typedef struct { |
| 6985 | stbi_uc size, type, channel; |
no test coverage detected