1
1
mirror of https://github.com/theoludwig/libcproject.git synced 2025-05-21 23:21:15 +02:00

feat: add string type

This commit is contained in:
2023-06-25 15:01:25 +02:00
parent ce088f8ff5
commit 8f3ee199e5
13 changed files with 172 additions and 194 deletions

View File

@ -14,7 +14,7 @@
* @param character
* @since v1.0.0
*/
void character_append(char* string, char character);
void character_append(string string_value, char character);
/**
* @brief Append a character to a string at a specific index, assuming string points to an array with enough space.
@ -24,7 +24,7 @@ void character_append(char* string, char character);
* @param index
* @since v1.0.0
*/
void character_append_at(char* string, const char character, const size_t index);
void character_append_at(string string_value, const char character, const size_t index);
/**
* @brief Converts the character to uppercase.