/usr/include/ClearSilver/cgi/date.h is in clearsilver-dev 0.10.5-1.3build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | /*
* Copyright 2001-2004 Brandon Long
* All Rights Reserved.
*
* ClearSilver Templating System
*
* This code is made available under the terms of the ClearSilver License.
* http://www.clearsilver.net/license.hdf
*
*/
#ifndef __DATE_H_
#define __DATE_H_ 1
#include <time.h>
__BEGIN_DECLS
NEOERR *export_date_tm (HDF *obj, const char *prefix, struct tm *ttm);
NEOERR *export_date_time_t (HDF *obj, const char *prefix, const char *timezone,
time_t tt);
__END_DECLS
#endif /* __DATE_H_ */
|