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

Last change on this file since 388 was 380, checked in by Nishi, on Oct 17, 2024 at 7:24:11 PM

trying to fix bsdi port

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