2021-10-13 21:43:45 +02:00
|
|
|
#ifndef __STRING__
|
|
|
|
#define __STRING__
|
2021-09-28 23:58:00 +02:00
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Converts all the alphabetic characters in a string to uppercase.
|
|
|
|
*
|
|
|
|
* @param string
|
|
|
|
* @return char*
|
|
|
|
*/
|
|
|
|
char* string_to_upper(const char* string);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Reverse the characters in an array.
|
|
|
|
*
|
|
|
|
* @param string
|
|
|
|
* @return char*
|
|
|
|
*/
|
|
|
|
char* string_reverse(const char* string);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Returns true if the string is a palindrome (a palindrome is a word,
|
|
|
|
* number, phrase, or other sequence of characters which reads the same backward
|
|
|
|
* as forward).
|
|
|
|
*
|
|
|
|
* @param string The string to check.
|
|
|
|
* @return true if the string is a palindrome, false otherwise.
|
|
|
|
*/
|
|
|
|
bool string_is_palindrome(const char* string);
|
|
|
|
|
|
|
|
/**
|
2021-09-29 00:10:40 +02:00
|
|
|
* @brief Replace all the occurrences of search value into replace value in
|
2021-09-28 23:58:00 +02:00
|
|
|
* the string.
|
|
|
|
*
|
|
|
|
* @param string
|
|
|
|
* @param search_value A character search value.
|
|
|
|
* @param replace_value A character containing the text to replace for match.
|
|
|
|
* @return char*
|
|
|
|
*/
|
2021-09-29 00:10:40 +02:00
|
|
|
char* string_replace(const char* string, char search, char replace);
|
2021-09-28 23:58:00 +02:00
|
|
|
|
|
|
|
#endif
|