1 /*
2  * strftime.h
3  *   header file for strftime.c
4  *
5  * $Id: strftime.h,v 1.6 2003/11/28 20:13:41 [Xp-AvR] Exp $
6  */
7 
8 #ifndef _EVANGELINE_COMPAT_STRFTIME_H_
9 #define _EVANGELINE_COMPAT_STRFTIME_H_
10 
11 #include "src/main.h"
12 #include <time.h>
13 
14 #ifndef HAVE_STRFTIME
15 size_t EvangelineStrftime(char *s, size_t maxsize, const char *format,
16                     const struct tm *tp);
17 #else
18 #  define EvangelineStrftime strftime
19 #endif
20 
21 #endif /* !_EVANGELINE_COMPAT_STRFTIME_H_ */
22