_dt X
DATE X
1: /* $Header$ */ 2: 3: /* 4: * Date struct definitions 5: * 6: * Author: Peter J. Nicklin 7: */ 8: typedef struct _dt 9: { 10: int t_sec; 11: int t_min; 12: int t_hour; 13: int t_day; 14: int t_mon; 15: int t_year; 16: } DATE;