3 * $Date: 2007/05/17 08:25:58 $
5 * This file contain a replacement of commonly used function strptime
6 * Under some OS's it appears only with _XOPEN_SOURCE definition
13 #include "stg/common.h"
15 char * stg_strptime(const char * a, const char * b, struct tm * tm)
17 return strptime(a, b, tm);