not implementing those

This commit is contained in:
2025-05-21 20:49:17 +02:00
parent 5b4a3f84e5
commit d31bc73884
3 changed files with 0 additions and 47 deletions

View File

@ -185,16 +185,6 @@ char* strops_remove_at_pos_char(const char* string, ull_t pos) {
return result;
}
char* strops_remove_at_pos_string(const char* string, const char* string_to_remove, ull_t pos) {
char* result = strops_copy(string);
return result;
}
char* strops_replace_at_pos_string(const char* string, const char* string_to_remove, const char* string_to_insert, ull_t pos) {
char* result = strops_copy(string);
return result;
}
char* strops_trim_right_whitespace(const char* string) {
char* result = strops_copy(string);
while (strops_contains_char("\t\n\v\f\r ", result[strops_length(result) - 1])) {