not implementing those
This commit is contained in:
10
strops.c
10
strops.c
@ -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])) {
|
||||
|
Reference in New Issue
Block a user