Ignore:
Timestamp:
Mar 10, 2024, 11:21:18 AM (7 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
9398177
Parents:
b64d0f4
Message:

more switch to tabs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/theses/mike_brooks_MMath/programs/lst-issues-intrusive.run.c

    rb64d0f4 r5546f50b  
    2121
    2222struct req {
    23   int pri, rqr;
    24   LIST_ENTRY(req) x;
     23        int pri, rqr;
     24        LIST_ENTRY(req) x;
    2525};
    2626
     
    3131
    3232struct req
    33   r1 = {1, 42},
    34   r2 = {2, 42};
     33        r1 = {1, 42},
     34        r2 = {2, 42};
    3535
    3636LIST_INSERT_HEAD(
    37   &reqs, &r2, x);
     37        &reqs, &r2, x);
    3838LIST_INSERT_HEAD(
    39   &reqs, &r1, x);
     39        &reqs, &r1, x);
    4040
    4141
     
    5151struct req *cur;
    5252LIST_FOREACH(cur, &reqs, x)
    53     printf("{%d %d} ", cur->pri, cur->rqr);
     53        printf("{%d %d} ", cur->pri, cur->rqr);
    5454printf("\n");
    5555
Note: See TracChangeset for help on using the changeset viewer.