INNER CODE UNIT · C

n

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

    n = &(s->tbl[i]);
    n->next = -1;
    n->t = t;
    n->ch = data[0] & 0x8f; /* 9x -> 8x */
    n->note = data[1];

    if (s->top < 0) {
        s->top = i;
    } else {
        int j, k;
        j = s->top;
        k = -1;
        while ((j >= 0) && (t >= s->tbl[j].t)) {
            k = j;
            j = s->tbl[j].next;
        }
        if (k < 0) {
            n->next = s->top;

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…