source: Main/trunk/Server/strptime.h@ 314

Last change on this file since 314 was 312, checked in by Nishi, on Oct 14, 2024 at 3:17:37 AM

works on os2

  • Property svn:keywords set to Id
File size: 301 bytes
Line 
1#ifndef STRPTIME_H
2#define STRPTIME_H
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8#include <time.h>
9
10#if defined(_WIN32) || defined(_PSP) || defined(__ps2sdk__) || defined(__OS2__)
11char* strptime(const char *buf, const char *fmt, struct tm *tm);
12#endif
13
14#ifdef __cplusplus
15}
16#endif
17
18#endif // STRPTIME_H
Note: See TracBrowser for help on using the repository browser.