File: strftime.h

package info (click to toggle)
courier 1.5.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 54,444 kB
  • sloc: ansic: 130,619; cpp: 33,255; sh: 10,437; perl: 4,250; makefile: 3,447; sed: 39
file content (23 lines) | stat: -rw-r--r-- 358 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 */
#ifndef	strftime_h
#define	strftime_h	1

#include	<time.h>

#if	HAVE_LOCALE_H
#if	HAVE_SETLOCALE
#if	HAVE_SQWEBMAIL_UNICODE
#if	USE_LIBCHARSET || HAVE_LANGINFO_CODESET

extern size_t strftime_unicode(char *, size_t, const char *, const struct tm *);

#define	strftime(s,max,fmt,tm) strftime_unicode(s,max,fmt,tm)

#endif
#endif
#endif
#endif

#endif