ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/tewi/Server/strptime.h
Revision: 1.3
Committed: Sun Nov 3 10:40:12 2024 UTC (12 days, 1 hour ago) by nishi
Content type: text/x-c
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +1 -1 lines
Error occurred while calculating annotation data.
Log Message:
amiga

File Contents

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