'Relative' in the sense that they can only sensibly compared to another time value obtained using the same function during the same program invocation.
18 lines
209 B
C
18 lines
209 B
C
#ifndef _PORTING_H
|
|
#define _PORTING_H
|
|
|
|
#ifdef _WIN32
|
|
#include "porting_win32.h"
|
|
#else
|
|
#include "porting_posix.h"
|
|
#endif
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define strcasecmp(a, b) _stricmp(a, b)
|
|
|
|
#endif
|
|
|
|
#endif // _PORTING_H
|
|
|