| 1702 | // nothing |
| 1703 | #else |
| 1704 | static stbi__uint32 stbi__get32be(stbi__context *s) |
| 1705 | { |
| 1706 | stbi__uint32 z = stbi__get16be(s); |
| 1707 | return (z << 16) + stbi__get16be(s); |
| 1708 | } |
| 1709 | #endif |
| 1710 | |
| 1711 | #if defined(STBI_NO_BMP) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) |
no test coverage detected