2017-01-22 13:58:20 +01:00
|
|
|
/* Copyright (C) 2010-2017 The RetroArch team
|
2014-10-21 07:59:31 +02:00
|
|
|
*
|
|
|
|
* ---------------------------------------------------------------------------------------
|
|
|
|
* The following license statement only applies to this file (strl.h).
|
|
|
|
* ---------------------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge,
|
|
|
|
* to any person obtaining a copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation the rights to
|
|
|
|
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
|
|
|
|
* and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
|
|
|
|
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
|
|
* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
|
|
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __LIBRETRO_SDK_COMPAT_STRL_H
|
|
|
|
#define __LIBRETRO_SDK_COMPAT_STRL_H
|
|
|
|
|
|
|
|
#include <string.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "../../../config.h"
|
|
|
|
#endif
|
|
|
|
|
2016-04-23 10:40:46 +02:00
|
|
|
#include <retro_common_api.h>
|
|
|
|
|
|
|
|
RETRO_BEGIN_DECLS
|
2015-06-02 16:39:43 +02:00
|
|
|
|
2015-10-26 02:41:41 +01:00
|
|
|
#ifdef __MACH__
|
2015-11-11 21:59:51 +01:00
|
|
|
#ifndef HAVE_STRL
|
2015-10-26 02:41:41 +01:00
|
|
|
#define HAVE_STRL
|
|
|
|
#endif
|
2015-11-11 21:59:51 +01:00
|
|
|
#endif
|
2015-10-26 02:41:41 +01:00
|
|
|
|
2015-06-02 16:39:43 +02:00
|
|
|
#ifndef HAVE_STRL
|
2014-10-21 07:59:31 +02:00
|
|
|
/* Avoid possible naming collisions during link since
|
|
|
|
* we prefer to use the actual name. */
|
2015-10-26 03:18:13 +01:00
|
|
|
#define strlcpy(dst, src, size) strlcpy_retro__(dst, src, size)
|
2015-03-10 18:47:21 +01:00
|
|
|
|
2015-10-26 03:18:13 +01:00
|
|
|
#define strlcat(dst, src, size) strlcat_retro__(dst, src, size)
|
2014-10-21 07:59:31 +02:00
|
|
|
|
|
|
|
size_t strlcpy(char *dest, const char *source, size_t size);
|
|
|
|
size_t strlcat(char *dest, const char *source, size_t size);
|
2015-03-10 18:47:21 +01:00
|
|
|
|
2015-06-02 16:39:43 +02:00
|
|
|
#endif
|
|
|
|
|
2016-04-23 10:40:46 +02:00
|
|
|
RETRO_END_DECLS
|
2015-06-02 16:39:43 +02:00
|
|
|
|
2014-10-21 07:59:31 +02:00
|
|
|
#endif
|
|
|
|
|