| 1730 | // nothing |
| 1731 | #else |
| 1732 | static int stbi__get16be(stbi__context* s) { |
| 1733 | int z = stbi__get8(s); |
| 1734 | return (z << 8) + stbi__get8(s); |
| 1735 | } |
| 1736 | #endif |
| 1737 | |
| 1738 | #if defined(STBI_NO_PNG) && defined(STBI_NO_PSD) && defined(STBI_NO_PIC) |
no test coverage detected