strptime.h 333 B

12345678910111213141516171819
  1. #ifndef __STRPTIME_H__
  2. #define __STRPTIME_H__
  3. #pragma once
  4. #include "config.h"
  5. #ifdef __cplusplus
  6. extern "C" {
  7. #endif
  8. // http://www.opengroup.org/onlinepubs/009695399/functions/strptime.html
  9. TOOLKIT_API char *strptime(char *buf, char *fmt, struct tm *tm);
  10. #ifdef __cplusplus
  11. } // extern "C" {
  12. #endif
  13. #endif // __STRPTIME_H__