[go: up one dir, main page]

Menu

[8a2cb6]: / missing / missing.h  Maximize  Restore  History

Download this file

20 lines (14 with data), 607 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
/* Contest Arbitrator v0.3.2 by Dmitry Gorokh, UR4MCK
This program is FREEWARE!
POSIX Libc in Mingw missing functions implementation
*/
/* This is only needed on Win32 platform. On native Linux below functions are in Libc */
#ifdef __WIN32__
#ifndef MISSING_H
#define MISSING_H
extern struct tm* __cdecl gmtime_r(const time_t *, struct tm*);
extern char* __cdecl strptime(const char *, const char *, struct tm *);
extern time_t __cdecl timegm(struct tm *tm);
extern char* __cdecl strtok_r(char *s, const char *delim, char **last);
#endif /* MISSING_H */
#endif /* __WIN32__ */