• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright 2001-2004 Brandon Long
3  * All Rights Reserved.
4  *
5  * ClearSilver Templating System
6  *
7  * This code is made available under the terms of the ClearSilver License.
8  * http://www.clearsilver.net/license.hdf
9  *
10  */
11 
12 #ifndef __DATE_H_
13 #define __DATE_H_ 1
14 
15 #include <time.h>
16 
17 __BEGIN_DECLS
18 
19 NEOERR *export_date_tm (HDF *obj, const char *prefix, struct tm *ttm);
20 NEOERR *export_date_time_t (HDF *obj, const char *prefix, const char *timezone,
21                             time_t tt);
22 
23 __END_DECLS
24 
25 #endif /* __DATE_H_ */
26