source:
Main/trunk/Server/strptime.h@
156
Last change on this file since 156 was 140, checked in by , on Sep 23, 2024 at 8:31:18 PM | |
---|---|
|
|
File size: 235 bytes |
Rev | Line | |
---|---|---|
[32] | 1 | #ifndef STRPTIME_H |
2 | #define STRPTIME_H | |
3 | ||
[140] | 4 | #ifdef __cplusplus |
5 | extern "C" { | |
6 | #endif | |
7 | ||
[32] | 8 | #include <time.h> |
9 | ||
10 | #ifdef _WIN32 | |
11 | char* 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.