main()
{
	name = "strcmp";
	
	test_num(strcmp("test", "test"), 0, "same chars");
	test_num(strcmp("s", "b"), 17, "");
	test_num(strcmp("", ""), 0, "empty strings");
	test_num(strcmp("", "a"), 65439, "");
}