INNER CODE UNIT · C

c

1oom-fork/1oom · src/fmt_pic.c:69

            c = *data++;
            if (c & 0xc0) {
                n = c & 0x3f;
                if (len_in-- == 0) {
                    return false;
                }
                c = *data++;
            } else {
                n = 1;
            }
            x += n;
            while (n--) {
                *p++ = c;
            }
        }
    }
    if ((len_in > 0) && (*data++ == 12) && (--len_in >= (256 * 3))) {
        uint8_t *p;

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…