add: test to strstr strchr

This commit is contained in:
2023-06-18 19:43:39 +02:00
parent c6728cfe49
commit 764761a58f
2 changed files with 6 additions and 0 deletions

View File

@ -5,4 +5,6 @@ main()
test_str(strstr("test", "t"), "test", "");
test_str(strstr("test", "st"), "st", "");
test_str(strstr("hello world!", "s"), 0, "non present to_find");
test_str(strstr("", "s"), 0, "empty str");
test_str(strstr("", ""), "", "empty str and empty to find");
}