1 // Copyright 2023 The Android Open Source Project
2 //
3 // This software is licensed under the terms of the GNU General Public
4 // License version 2, as published by the Free Software Foundation, and
5 // may be copied, distributed, and modified under those terms.
6 //
7 // This program is distributed in the hope that it will be useful,
8 // but WITHOUT ANY WARRANTY; without even the implied warranty of
9 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10 // GNU General Public License for more details.
11 
12 
13 #ifndef _AEMU_STRINGS_H_
14 #define _AEMU_STRINGS_H_
15 
16 // strings.h does not exist in msvc
17 #if defined(_WIN32) || defined(_WIN64)
18 #  include <string.h>
19 #  define strcasecmp _stricmp
20 #  define strncasecmp _strnicmp
21 #else
22 #  include <strings.h>
23 #endif
24 
25 #endif	/* Not _AEMU_STRINGS_H_ */
26