mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2024-11-09 22:08:58 +01:00
63 lines
1.1 KiB
C
63 lines
1.1 KiB
C
#ifndef __STRING__
|
|
#define __STRING__
|
|
|
|
#include <stdbool.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "character.h"
|
|
|
|
/**
|
|
* @brief Return the length of a string (excluding '\0').
|
|
*
|
|
* @param string
|
|
* @return size_t
|
|
*/
|
|
size_t string_get_length(const char* string);
|
|
|
|
/**
|
|
* @brief Converts all the alphabetic characters in a string to lowercase.
|
|
*
|
|
* NOTE: Mutates the string.
|
|
*
|
|
* @param string
|
|
*/
|
|
void string_to_lowercase(char* string);
|
|
|
|
/**
|
|
* @brief Removes all `character` from the start of a string.
|
|
*
|
|
* NOTE: Mutates the string.
|
|
*
|
|
* @param string
|
|
*/
|
|
void string_trim_start(char* string, char character);
|
|
|
|
/**
|
|
* @brief Removes all `character` from the end of a string.
|
|
*
|
|
* NOTE: Mutates the string.
|
|
*
|
|
* @param string
|
|
*/
|
|
void string_trim_end(char* string, char character);
|
|
|
|
/**
|
|
* @brief Removes all `character` from the start and end of a string.
|
|
*
|
|
* NOTE: Mutates the string.
|
|
*
|
|
* @param string
|
|
*/
|
|
void string_trim(char* string, char character);
|
|
|
|
/**
|
|
* @brief Generate a slug from a string.
|
|
*
|
|
* @param string
|
|
* @return char*
|
|
*/
|
|
char* string_slugify(char* string);
|
|
|
|
#endif
|