main()
{
	local str;
	name = "strlen";
	str = "bozoman du 36";
	test(strlen(str), 13, "");
	test(strlen(""), 0, "Empty string");
}