only url stuff missing for now

This commit is contained in:
2025-05-07 23:16:49 +02:00
parent e2eaa512dd
commit 5a420c21b7
2 changed files with 82 additions and 14 deletions

View File

@ -148,7 +148,7 @@ int test_trim_left_string() {
}
int test_trim_both_string() {
char* input = "NULL Bruh NULL";
char* input = "NULLNULL Bruh NULLNULL";
char* expected = " Bruh ";
char* result = strops_trim_both_string(input, "NULL");
if (strcmp(result, expected) != 0) {