// computeSplitTime.h
// P. Conrad 03/06/06
// separately compiled computeSplitTime() function


// These next two lines are to prevent "multiple inclusion" of our
//   .h file.  They allow the include file to be "idempotent" 

#ifndef COMPUTESPLITTIME_H
#define COMPUTESPLITTIME_H

double computeSplitTime(const char *  const splitTimePtr);





#endif /* COMPUTESPLITTIME_H */





