| 12345678910111213141516171819 |
- #ifndef __STRPTIME_H__
- #define __STRPTIME_H__
- #pragma once
- #include "config.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- // http://www.opengroup.org/onlinepubs/009695399/functions/strptime.html
- TOOLKIT_API char *strptime(char *buf, char *fmt, struct tm *tm);
- #ifdef __cplusplus
- } // extern "C" {
- #endif
- #endif // __STRPTIME_H__
|