Add cookies support

This commit is contained in:
2024-01-11 19:57:07 +08:00
parent c753f200cd
commit b6db76625b
8 changed files with 1315 additions and 13 deletions

10
strptime/strptime.h Normal file
View File

@@ -0,0 +1,10 @@
#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