2013-12-10 19:10:19 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2014-01-01 00:50:59 +00:00
|
|
|
* Copyright (C) 2010-2014 - Hans-Kristian Arntzen
|
2013-12-10 19:10:19 +00:00
|
|
|
*
|
|
|
|
* RetroArch is free software: you can redistribute it and/or modify it under the terms
|
|
|
|
* of the GNU General Public License as published by the Free Software Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* RetroArch is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE. See the GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along with RetroArch.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef RARCH_STRCASESTR_H
|
|
|
|
#define RARCH_STRCASESTR_H
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
2014-06-08 10:37:32 +00:00
|
|
|
#include "../config.h"
|
2013-12-10 19:10:19 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_STRCASESTR
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
2013-12-26 20:27:41 +00:00
|
|
|
|
2014-09-09 03:24:32 +00:00
|
|
|
/* Avoid possible naming collisions during link
|
|
|
|
* since we prefer to use the actual name. */
|
2013-12-10 19:10:19 +00:00
|
|
|
#define strcasestr(haystack, needle) strcasestr_rarch__(haystack, needle)
|
2013-12-26 22:04:14 +00:00
|
|
|
char *strcasestr(const char *haystack, const char *needle);
|
2013-12-10 19:10:19 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|