new untested code

This commit is contained in:
2025-05-28 19:32:15 +02:00
parent fec9f2633d
commit 77ccd59ce3
3 changed files with 49 additions and 11 deletions

View File

@ -79,7 +79,7 @@ int test_contains_string() {
char result;
input = "I suck at C";
expected = 1;
result = strops_contains_string(input, "C");
result = strops_contains_string(input, "suck");
if (result != expected) {
printf("test_ failed\n");
printf("Got = %d\nExpected = %d\n", result, expected);