ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
portdefs.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef _PORTDEFS_H_
23 #define _PORTDEFS_H_
24 
25 #include <stdio.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <stdarg.h>
29 #include <stddef.h>
30 #include <assert.h>
31 #include <ctype.h>
32 #include <inttypes.h>
33 #include <limits.h>
34 #define _USE_MATH_DEFINES
35 #include <math.h>
36 #include <new>
37 #include <limits>
38 
39 // This is defined in snprintf.c
40 #ifdef __cplusplus
41 extern "C" {
42 #endif
43 int rpl_vsnprintf(char *text, size_t maxlen, const char *fmt, va_list ap);
44 #ifdef __cplusplus
45 }
46 #endif
47 
48 #define vsnprintf rpl_vsnprintf
49 
50 // Bionic libc up to Android 6/API 23 (excluded) is non-conformant with ANSI C.
51 // It compares with integer character without casting it to unsigned char as required.
52 // On AArch64, another (optimized) implementation is used which behaves properly.
53 // If char is unsigned the problem does not exist.
54 // strchr calls are also replaced by memchr calls when the compiler knows the haystack size.
55 #if !defined(__CHAR_UNSIGNED__) && !defined(__aarch64__)
56 #define memchr(s,c,n) memchr(s, (unsigned char)(c), n)
57 #define strchr(s,c) strchr(s, (unsigned char)(c))
58 #endif
59 
60 #endif // _PORTDEFS_H_