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