trick/trick_source/sim_services/SimTime/include/time_offset.h
Alex Lin 14a75508a3 Cleaning up once include variables and copyright cleanup.
Changed all header file once include variables to follow the same naming
convention and not start with any underscores.  Also deleted old
incorrect copyright notices.  Also removed $Id: tags from all files.

Fixes #14.  Fixes #22.
2015-03-23 16:03:14 -05:00

26 lines
458 B
C

#ifndef TIME_OFFSET_H
#define TIME_OFFSET_H
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
int day; /* -- Day of the year, 0 .. 364 */
int hour; /* -- Hour of the day, 0 .. 23 */
int min; /* -- Minute of the hour, 0 .. 59 */
double sec; /* -- Seconds of the hour 0.0 .. 59.99999999 */
} TIME_OFFSET ;
// For backwards compatibility
typedef TIME_OFFSET GMTTIME ;
#ifdef __cplusplus
}
#endif
#endif