2020-01-31 15:43:42 +01:00
|
|
|
/* Copyright (C) 2010-2020 The RetroArch team
|
2019-07-18 19:11:30 +02:00
|
|
|
*
|
|
|
|
* ---------------------------------------------------------------------------------------
|
2020-01-30 17:14:45 +01:00
|
|
|
* The following license statement only applies to this file (label_sanitization.h).
|
2019-07-18 19:11:30 +02:00
|
|
|
* ---------------------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
#include <stddef.h>
|
2019-07-18 21:13:14 +02:00
|
|
|
#include <boolean.h>
|
2019-07-18 19:11:30 +02:00
|
|
|
|
2019-07-29 13:56:20 +02:00
|
|
|
void label_sanitize(char *label, bool (*left)(char*), bool (*right)(char*));
|
2019-07-18 21:13:14 +02:00
|
|
|
|
2019-07-29 13:56:20 +02:00
|
|
|
void label_remove_parens(char *label);
|
2019-07-18 19:11:30 +02:00
|
|
|
|
2019-07-29 13:56:20 +02:00
|
|
|
void label_remove_brackets(char *label);
|
2019-07-18 19:11:30 +02:00
|
|
|
|
2019-07-29 13:56:20 +02:00
|
|
|
void label_remove_parens_and_brackets(char *label);
|
2019-07-18 19:11:30 +02:00
|
|
|
|
2019-07-29 13:56:20 +02:00
|
|
|
void label_keep_region(char *label);
|
2019-07-18 19:11:30 +02:00
|
|
|
|
2019-07-29 13:56:20 +02:00
|
|
|
void label_keep_disc(char *label);
|
2019-07-18 19:11:30 +02:00
|
|
|
|
2019-07-29 13:56:20 +02:00
|
|
|
void label_keep_region_and_disc(char *label);
|