| 1739 | // nothing |
| 1740 | #else |
| 1741 | static stbi__uint32 stbi__get32be(stbi__context* s) { |
| 1742 | stbi__uint32 z = stbi__get16be(s); |
| 1743 | return (z << 16) + stbi__get16be(s); |
| 1744 | } |
| 1745 | #endif |
| 1746 | |
| 1747 | #if defined(STBI_NO_BMP) && defined(STBI_NO_TGA) && defined(STBI_NO_GIF) |
no test coverage detected