Substitutes.hpp
Go to the documentation of this file.
1#pragma once
2
3#ifdef _WIN32
4
5// IGNORE is used in InputErrorAction.hpp, as an enum value,
6// but is defined as a #def in WinBase.h which is included by Shlwapi.h.
7// It is not required here, so we can undefine it.
8#undef IGNORE
9#undef GROUP_NAME
10#undef ERROR
11#include <iostream>
12#include <stddef.h>
13#include <time.h>
14
15int fnmatch(const char* pattern, const char* string, int flags);
16
17struct tm* gmtime_r(const time_t* timer, struct tm* buf);
18
19#endif