IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jan 20, 2006, 5:27:33 PM (21 years ago)
Author:
jhoblitt
Message:

move psTimeIsZero() -> p2alloc.c

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippTools/src/pxalloc.c

    r6063 r6110  
    7272    psFree(ptr->images);
    7373}
     74
     75bool psTimeIsZero(psTime *time) {
     76    if (time->sec == 0 || time->nsec == 0) {
     77        return false;
     78    }
     79
     80    return true;
     81}
Note: See TracChangeset for help on using the changeset viewer.