Subversion Repositories Tewi

Rev

Rev 341 | Rev 380 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
32 nishi 1
#ifndef STRPTIME_H
2
#define STRPTIME_H
3
 
140 nishi 4
#ifdef __cplusplus
5
extern "C" {
6
#endif
7
 
32 nishi 8
#include <time.h>
9
 
359 nishi 10
#if defined(_WIN32) || defined(_PSP) || defined(__ps2sdk__) || defined(__OS2__) || defined(__NETWARE__) || defined(__NeXT__) || defined(__DOS__)
32 nishi 11
char* strptime(const char *buf, const char *fmt, struct tm *tm);
12
#endif
13
 
140 nishi 14
#ifdef __cplusplus
15
}
16
#endif
17
 
32 nishi 18
#endif // STRPTIME_H