Files
c-utils/strptime/strptime.h
2024-01-11 19:57:07 +08:00

11 lines
166 B
C

#ifndef STRPTIME_H
#define STRPTIME_H
#include <time.h>
#ifdef _WIN32
char* strptime(const char *buf, const char *fmt, struct tm *tm);
#endif
#endif // STRPTIME_H