/************************************************************************/
/* Copyright 2003 MBARI													*/
/************************************************************************/
/* Summary	: Definitions for Real-time clock routines for OASIS		*/
/* Filename : clock.h													*/
/* Author	: Robert Herlien (rah)										*/
/* Project	: OASIS Mooring Replacement (OASIS3)						*/
/* Revision: 0.1														*/
/* Created	: 01/13/2003												*/
/*																			*/
/* MBARI provides this documentation and code "as is", with no warranty,	*/
/* express or implied, of its quality or consistency. It is provided without*/
/* support and without obligation on the part of the Monterey Bay Aquarium	*/
/* Research Institute to assist in its use, correction, modification, or	*/
/* enhancement. This information should not be published or distributed to	*/
/* third parties without specific written permission from MBARI.			*/
/*																			*/
/************************************************************************/
/* Modification History:												*/
/* 13jan2003 rah - created												*/
/************************************************************************/

#ifndef INCclockh
#define INCclockh		1

#include <time.h>

/****************************************/
/* Function Declarations				*/
/****************************************/

TimeOfDay		clk_read(Void);
Void			clk_write(struct tm *ptm);
Nat16			clkLocalHour(Void);
Void			clk_printtime(TimeOfDay ptime);

#endif	/* INCclockh */
