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-multi-static.run.c

    rb64d0f4 r5546f50b  
    1919
    2020struct req {
    21   int pri, rqr;
    22   LIST_ENTRY(req) by_pri;
    23   LIST_ENTRY(req) by_rqr;
     21        int pri, rqr;
     22        LIST_ENTRY(req) by_pri;
     23        LIST_ENTRY(req) by_rqr;
    2424};
    2525
     
    3737
    3838struct req
    39   r42a = {1, 42},
    40   r42b = {2, 42},
    41   r17a = {2, 17},
    42   r17b = {3, 17},
    43   r17c = {4, 17},
    44   r99a = {3, 99};
     39        r42a = {1, 42},
     40        r42b = {2, 42},
     41        r17a = {2, 17},
     42        r17b = {3, 17},
     43        r17c = {4, 17},
     44        r99a = {3, 99};
    4545
    4646LIST_INSERT_HEAD(&reqs_pri_global, &r17c, by_pri);
     
    6868struct req *cur;
    6969LIST_FOREACH(cur, &reqs_pri_global, by_pri)
    70     printf("{%d %d} ", cur->pri, cur->rqr);
     70        printf("{%d %d} ", cur->pri, cur->rqr);
    7171printf("| ");
    7272LIST_FOREACH(cur, &reqs_rqr_42, by_rqr)
    73     printf("{%d %d} ", cur->pri, cur->rqr);
     73        printf("{%d %d} ", cur->pri, cur->rqr);
    7474printf("| ");
    7575LIST_FOREACH(cur, &reqs_rqr_17, by_rqr)
    76     printf("{%d %d} ", cur->pri, cur->rqr);
     76        printf("{%d %d} ", cur->pri, cur->rqr);
    7777printf("| ");
    7878LIST_FOREACH(cur, &reqs_rqr_99, by_rqr)
    79     printf("{%d %d} ", cur->pri, cur->rqr);
     79        printf("{%d %d} ", cur->pri, cur->rqr);
    8080printf("\n");
    8181
Note: See TracChangeset for help on using the changeset viewer.