| 1691 | // nothing |
| 1692 | #else |
| 1693 | static int stbi__get16be(stbi__context *s) |
| 1694 | { |
| 1695 | int z = stbi__get8(s); |
| 1696 | return (z << 8) + stbi__get8(s); |
| 1697 | } |
| 1698 | #endif |
| 1699 | |
| 1700 | #if defined(STBI_NO_PNG) && defined(STBI_NO_PSD) && defined(STBI_NO_PIC) |
no test coverage detected