core: all int is now num

This commit is contained in:
2023-06-18 20:03:27 +02:00
parent 1b878db8fe
commit 85a5b567b2
8 changed files with 31 additions and 27 deletions

View File

@ -2,6 +2,6 @@ main()
{
name = "strlen";
test_int(strlen("bozoman du 36"), 13, "");
test_int(strlen(""), 0, "Empty string");
test_num(strlen("bozoman du 36"), 13, "");
test_num(strlen(""), 0, "Empty string");
}