mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
50 lines
1.0 KiB
C
50 lines
1.0 KiB
C
/*
|
|
* This file is part of RGBDS.
|
|
*
|
|
* Copyright (c) 2020 RGBDS contributors.
|
|
*
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
/* platform-specific hacks */
|
|
|
|
#ifndef RGBDS_PLATFORM_H
|
|
#define RGBDS_PLATFORM_H
|
|
|
|
/* MSVC doesn't have strncasecmp, use a suitable replacement */
|
|
#ifdef _MSC_VER
|
|
# include <string.h>
|
|
# define strncasecmp _strnicmp
|
|
#else
|
|
# include <strings.h>
|
|
#endif
|
|
|
|
/* MSVC has deprecated strdup in favor of _strdup */
|
|
#ifdef _MSC_VER
|
|
# define strdup _strdup
|
|
#endif
|
|
|
|
/* MSVC prefixes the names of S_* macros with underscores,
|
|
and doesn't define any S_IS* macros. Define them ourselves */
|
|
#ifdef _MSC_VER
|
|
# define S_IFMT _S_IFMT
|
|
# define S_IFDIR _S_IFDIR
|
|
# define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
|
|
#endif
|
|
|
|
/* MSVC doesn't use POSIX types or defines for `read` */
|
|
#ifdef _MSC_VER
|
|
# define STDIN_FILENO 0
|
|
# define ssize_t int
|
|
# define SSIZE_MAX INT_MAX
|
|
#endif
|
|
|
|
/* MSVC doesn't support `[static N]` for array arguments from C99 */
|
|
#ifdef _MSC_VER
|
|
# define MIN_NB_ELMS(N)
|
|
#else
|
|
# define MIN_NB_ELMS(N) static (N)
|
|
#endif
|
|
|
|
#endif /* RGBDS_PLATFORM_H */
|