| 1612 | } |
| 1613 | |
| 1614 | stbi_inline static stbi_uc stbi__get8(stbi__context *s) |
| 1615 | { |
| 1616 | if (s->img_buffer < s->img_buffer_end) |
| 1617 | return *s->img_buffer++; |
| 1618 | if (s->read_from_callbacks) { |
| 1619 | stbi__refill_buffer(s); |
| 1620 | return *s->img_buffer++; |
| 1621 | } |
| 1622 | return 0; |
| 1623 | } |
| 1624 | |
| 1625 | #if defined(STBI_NO_JPEG) && defined(STBI_NO_HDR) && defined(STBI_NO_PIC) && defined(STBI_NO_PNM) |
| 1626 | // nothing |
no test coverage detected