strptime_win.h 316 B

12345678910
  1. #ifndef ZLMEDIAKIT_STRPTIME_WIN_H
  2. #define ZLMEDIAKIT_STRPTIME_WIN_H
  3. #include <ctime>
  4. #ifdef _WIN32
  5. //window上自己实现strptime函数,linux已经提供strptime
  6. //strptime函数windows平台上实现
  7. char * strptime(const char *buf, const char *fmt, struct tm *tm);
  8. #endif
  9. #endif //ZLMEDIAKIT_STRPTIME_WIN_H