From 9c45d9ad13fdf439d44d7443ae75da15ea0223ed Mon Sep 17 00:00:00 2001 From: Sam Varshavchik Date: Mon, 19 Aug 2013 16:39:41 -0400 Subject: Initial checkin Imported from subversion report, converted to git. Updated all paths in scripts and makefiles, reflecting the new directory hierarchy. --- sqwebmail/strftime.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 sqwebmail/strftime.h (limited to 'sqwebmail/strftime.h') diff --git a/sqwebmail/strftime.h b/sqwebmail/strftime.h new file mode 100644 index 0000000..f111517 --- /dev/null +++ b/sqwebmail/strftime.h @@ -0,0 +1,23 @@ +/* + */ +#ifndef strftime_h +#define strftime_h 1 + +#include + +#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 + -- cgit v1.2.3