Translation update done using Pootle.
[gammu.git] / helper / strptime.h
blob22ef460bb08f062bd69d472c4ac3f4d66e7ca925
1 #ifndef __helper__strptime_h__
2 #define __helper__strptime_h__
4 #include <gammu-config.h>
6 #ifdef HAVE_STRPTIME
7 #define _XOPEN_SOURCE
8 #define _BSD_SOURCE
9 #include <time.h>
10 #else
11 #include <time.h>
12 char * strptime(const char *buf, const char *fmt, struct tm *tm);
13 #endif
15 #endif