Changeset 1673 for trunk/dll/select.c


Ignore:
Timestamp:
Dec 30, 2012, 7:51:01 PM (13 years ago)
Author:
Gregg Young
Message:

Update to Doxygen comment style Ticket 55. Also some minor code cleanup.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dll/select.c

    r1604 r1673  
    743743            cmp = TestCDates(&bsres->pci->date, &bsres->pci->time,
    744744                             &Cnrs[z].ss[x].pci->date, &Cnrs[z].ss[x].pci->time);
    745               /*(Cnrs[z].ss[x].pci->date.year >
    746                bsres->pci->date.year) ? TRUE : (Cnrs[z].ss[x].pci->date.year <
    747                                                 bsres->pci->date.
    748                                                 year) ? FALSE : (Cnrs[z].
    749                                                                  ss[x].pci->
    750                                                                  date.month >
    751                                                                  bsres->pci->
    752                                                                  date.
    753                                                                  month) ? TRUE
    754               : (Cnrs[z].ss[x].pci->date.month <
    755                  bsres->pci->date.month) ? FALSE : (Cnrs[z].ss[x].pci->date.
    756                                                     day >
    757                                                     bsres->pci->date.
    758                                                     day) ? TRUE : (Cnrs[z].
    759                                                                    ss[x].pci->
    760                                                                    date.day <
    761                                                                    bsres->
    762                                                                    pci->date.
    763                                                                    day) ?
    764               FALSE : (Cnrs[z].ss[x].pci->time.hours >
    765                        bsres->pci->time.hours) ? TRUE : (Cnrs[z].ss[x].pci->
    766                                                          time.hours <
    767                                                          bsres->pci->time.
    768                                                          hours) ? FALSE
    769               : (Cnrs[z].ss[x].pci->time.minutes >
    770                  bsres->pci->time.minutes) ? TRUE : (Cnrs[z].ss[x].pci->time.
    771                                                      minutes <
    772                                                      bsres->pci->time.
    773                                                      minutes) ? FALSE
    774               : (Cnrs[z].ss[x].pci->time.seconds >
    775                  bsres->pci->time.seconds) ? TRUE : (Cnrs[z].ss[x].pci->time.
    776                                                      seconds <
    777                                                      bsres->pci->time.
    778                                                      seconds) ? FALSE : FALSE;*/
    779745            if (cmp != 1)
    780746              Cnrs[z].ss[x].newest = FALSE;
    781             /*cmp =
    782               (Cnrs[z].ss[x].pci->date.year <
    783                bsres->pci->date.year) ? TRUE : (Cnrs[z].ss[x].pci->date.year >
    784                                                 bsres->pci->date.
    785                                                 year) ? FALSE : (Cnrs[z].
    786                                                                  ss[x].pci->
    787                                                                  date.month <
    788                                                                  bsres->pci->
    789                                                                  date.
    790                                                                  month) ? TRUE
    791               : (Cnrs[z].ss[x].pci->date.month >
    792                  bsres->pci->date.month) ? FALSE : (Cnrs[z].ss[x].pci->date.
    793                                                     day <
    794                                                     bsres->pci->date.
    795                                                     day) ? TRUE : (Cnrs[z].
    796                                                                    ss[x].pci->
    797                                                                    date.day >
    798                                                                    bsres->
    799                                                                    pci->date.
    800                                                                    day) ?
    801               FALSE : (Cnrs[z].ss[x].pci->time.hours <
    802                        bsres->pci->time.hours) ? TRUE : (Cnrs[z].ss[x].pci->
    803                                                          time.hours >
    804                                                          bsres->pci->time.
    805                                                          hours) ? FALSE
    806               : (Cnrs[z].ss[x].pci->time.minutes <
    807                  bsres->pci->time.minutes) ? TRUE : (Cnrs[z].ss[x].pci->time.
    808                                                      minutes >
    809                                                      bsres->pci->time.
    810                                                      minutes) ? FALSE
    811               : (Cnrs[z].ss[x].pci->time.seconds <
    812                  bsres->pci->time.seconds) ? TRUE : (Cnrs[z].ss[x].pci->time.
    813                                                      seconds >
    814                                                      bsres->pci->time.
    815                                                      seconds) ? FALSE : FALSE;*/
    816747            if (cmp != -1)
    817748              Cnrs[z].ss[x].oldest = FALSE;
Note: See TracChangeset for help on using the changeset viewer.