2018-04-16 08:57:17 +02:00
|
|
|
/* Copyright (C) 2010-2018 The RetroArch team
|
2015-03-13 15:35:55 +01:00
|
|
|
*
|
|
|
|
* ---------------------------------------------------------------------------------------
|
|
|
|
* The following license statement only applies to this file (stdstring.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_STDSTRING_H
|
|
|
|
#define __LIBRETRO_SDK_STDSTRING_H
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stddef.h>
|
2017-04-21 14:17:47 +02:00
|
|
|
#include <ctype.h>
|
2015-03-13 15:35:55 +01:00
|
|
|
#include <string.h>
|
2015-04-06 23:01:13 +02:00
|
|
|
#include <boolean.h>
|
2015-03-13 15:35:55 +01:00
|
|
|
|
2016-04-23 10:40:46 +02:00
|
|
|
#include <retro_common_api.h>
|
2017-04-21 13:35:26 +02:00
|
|
|
#include <retro_inline.h>
|
2018-02-01 11:16:13 +01:00
|
|
|
#include <compat/strl.h>
|
2016-04-23 10:40:46 +02:00
|
|
|
|
|
|
|
RETRO_BEGIN_DECLS
|
2015-03-13 15:35:55 +01:00
|
|
|
|
2017-04-21 13:35:26 +02:00
|
|
|
static INLINE bool string_is_empty(const char *data)
|
|
|
|
{
|
|
|
|
return (data == NULL) || (*data == '\0');
|
|
|
|
}
|
2015-04-06 19:03:14 +02:00
|
|
|
|
2017-04-21 13:35:26 +02:00
|
|
|
static INLINE bool string_is_equal(const char *a, const char *b)
|
|
|
|
{
|
2017-04-21 14:09:02 +02:00
|
|
|
if (!a || !b)
|
|
|
|
return false;
|
|
|
|
while(*a && (*a == *b))
|
|
|
|
a++, b++;
|
|
|
|
return (*(const unsigned char*)a - *(const unsigned char*)b) == 0;
|
2017-04-21 13:35:26 +02:00
|
|
|
}
|
2016-01-20 04:07:24 +01:00
|
|
|
|
2018-01-17 01:06:09 +01:00
|
|
|
static INLINE bool string_is_not_equal(const char *a, const char *b)
|
|
|
|
{
|
|
|
|
return !string_is_equal(a, b);
|
|
|
|
}
|
|
|
|
|
2018-02-01 11:16:13 +01:00
|
|
|
#define string_add_pair_open(s, size) strlcat((s), " (", (size))
|
|
|
|
#define string_add_pair_close(s, size) strlcat((s), ")", (size))
|
|
|
|
#define string_add_bracket_open(s, size) strlcat((s), "{", (size))
|
|
|
|
#define string_add_bracket_close(s, size) strlcat((s), "}", (size))
|
|
|
|
#define string_add_single_quote(s, size) strlcat((s), "'", (size))
|
|
|
|
#define string_add_quote(s, size) strlcat((s), "\"", (size))
|
|
|
|
#define string_add_colon(s, size) strlcat((s), ":", (size))
|
|
|
|
#define string_add_glob_open(s, size) strlcat((s), "glob('*", (size))
|
|
|
|
#define string_add_glob_close(s, size) strlcat((s), "*')", (size))
|
|
|
|
|
|
|
|
static INLINE void string_add_between_pairs(char *s, const char *str,
|
|
|
|
size_t size)
|
|
|
|
{
|
|
|
|
string_add_pair_open(s, size);
|
|
|
|
strlcat(s, str, size);
|
|
|
|
string_add_pair_close(s, size);
|
|
|
|
}
|
|
|
|
|
2017-05-16 03:20:39 +02:00
|
|
|
#define string_is_not_equal_fast(a, b, size) (memcmp(a, b, size) != 0)
|
|
|
|
#define string_is_equal_fast(a, b, size) (memcmp(a, b, size) == 0)
|
|
|
|
|
2018-03-01 23:16:34 +01:00
|
|
|
static INLINE bool string_is_equal_case_insensitive(const char *a,
|
|
|
|
const char *b)
|
|
|
|
{
|
|
|
|
int result = 0;
|
|
|
|
const unsigned char *p1 = (const unsigned char*)a;
|
|
|
|
const unsigned char *p2 = (const unsigned char*)b;
|
|
|
|
|
|
|
|
if (!a || !b)
|
|
|
|
return false;
|
|
|
|
if (p1 == p2)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
while ((result = tolower (*p1) - tolower (*p2++)) == 0)
|
|
|
|
if (*p1++ == '\0')
|
|
|
|
break;
|
|
|
|
|
|
|
|
return (result == 0);
|
|
|
|
}
|
|
|
|
|
2017-04-21 13:35:26 +02:00
|
|
|
static INLINE bool string_is_equal_noncase(const char *a, const char *b)
|
|
|
|
{
|
2018-03-01 23:16:34 +01:00
|
|
|
int result = 0;
|
2017-04-21 14:53:01 +02:00
|
|
|
const unsigned char *p1 = (const unsigned char*)a;
|
|
|
|
const unsigned char *p2 = (const unsigned char*)b;
|
2017-04-21 14:17:47 +02:00
|
|
|
|
|
|
|
if (!a || !b)
|
|
|
|
return false;
|
2017-04-21 14:53:01 +02:00
|
|
|
if (p1 == p2)
|
|
|
|
return false;
|
2017-04-21 14:17:47 +02:00
|
|
|
|
2017-04-21 14:53:01 +02:00
|
|
|
while ((result = tolower (*p1) - tolower (*p2++)) == 0)
|
|
|
|
if (*p1++ == '\0')
|
|
|
|
break;
|
2017-04-21 14:17:47 +02:00
|
|
|
|
2017-04-21 14:53:01 +02:00
|
|
|
return (result == 0);
|
2017-04-21 13:35:26 +02:00
|
|
|
}
|
2016-01-20 17:34:19 +01:00
|
|
|
|
2015-04-19 12:14:20 +02:00
|
|
|
char *string_to_upper(char *s);
|
|
|
|
|
2016-01-02 13:57:37 -05:00
|
|
|
char *string_to_lower(char *s);
|
|
|
|
|
2016-06-06 21:48:59 +02:00
|
|
|
char *string_ucwords(char* s);
|
|
|
|
|
2015-03-13 15:35:55 +01:00
|
|
|
char *string_replace_substring(const char *in, const char *pattern,
|
|
|
|
const char *by);
|
|
|
|
|
2016-06-09 08:01:55 +02:00
|
|
|
/* Remove leading whitespaces */
|
|
|
|
char *string_trim_whitespace_left(char *const s);
|
|
|
|
|
|
|
|
/* Remove trailing whitespaces */
|
|
|
|
char *string_trim_whitespace_right(char *const s);
|
|
|
|
|
|
|
|
/* Remove leading and trailing whitespaces */
|
|
|
|
char *string_trim_whitespace(char *const s);
|
|
|
|
|
2017-08-06 03:32:04 -04:00
|
|
|
char *word_wrap(char* buffer, const char *string, int line_width, bool unicode);
|
2017-01-17 14:05:05 +01:00
|
|
|
|
2016-04-23 10:40:46 +02:00
|
|
|
RETRO_END_DECLS
|
2015-03-13 15:35:55 +01:00
|
|
|
|
|
|
|
#endif
|