INNER CODE UNIT · C
p
1oom-fork/1oom · src/fmt_pic.c:63
p = &(pic->pix[y * w]);
for (int x = 0; x < bpl;) {
uint8_t c, n;
if (len_in-- == 0) {
return false;
}
c = *data++;
if (c & 0xc0) {
n = c & 0x3f;
if (len_in-- == 0) {
return false;
}
c = *data++;
} else {
n = 1;
}
x += n;
while (n--) {