IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Changeset 6110


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

move psTimeIsZero() -> p2alloc.c

Location:
trunk/ippTools/src
Files:
2 edited

Legend:

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

    r6105 r6110  
    11# include "p2tools.h"
    2 
    3 bool psTimeIsZero(psTime *time) {
    4     if (time->sec == 0 || time->nsec == 0) {
    5         return false;
    6     }
    7 
    8     return true;
    9 }
    102
    113// select pending frames (exposure+images) which are done/not done
  • 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.