/************************************************************************/
/*                                                                      */
/*  time_funct.h                                                        */
/*                                                                      */
/*  $Id: time_funct.h,v 1.2 1998/08/04 05:08:47 chris Exp $       */
/************************************************************************/


#ifndef TIME_FUNCT_H
#define TIME_FUNCT_H 

#include <sys/time.h>
#include <unistd.h>


/* Define public function prototypes */
double  getJD(void);
double  ut_seconds(void);
double  get_epoc(void);
void    dbl2tv(struct timeval *tv_ptr, double secs);
void    tv2dbl(double *secs, struct timeval *tv_ptr);

#endif /* TIME_FUNCT_H */
