| author | truebrain |
| Mon, 31 Mar 2008 11:31:44 +0000 | |
| branch | noai |
| changeset 9845 | c359062b4db0 |
| parent 9723 | eee46cb39750 |
| child 11044 | 097ea3e7ec56 |
| permissions | -rw-r--r-- |
| 9723 | 1 |
/* $Id$ */ |
2 |
||
3 |
/** @file date_func.h Functions related to dates. */ |
|
4 |
||
5 |
#ifndef DATE_FUNC_H |
|
6 |
#define DATE_FUNC_H |
|
7 |
||
8 |
#include "date_type.h" |
|
9 |
||
10 |
extern Year _cur_year; |
|
11 |
extern Month _cur_month; |
|
12 |
extern Date _date; |
|
13 |
extern DateFract _date_fract; |
|
14 |
||
15 |
void SetDate(Date date); |
|
16 |
void ConvertDateToYMD(Date date, YearMonthDay *ymd); |
|
17 |
Date ConvertYMDToDate(Year year, Month month, Day day); |
|
18 |
||
19 |
#endif /* DATE_FUNC_H */ |