IronGOLEM/tests/strchri.🗿

9 lines
161 B
Plaintext
Raw Normal View History

2023-06-18 12:11:55 -04:00
main()
{
name = "strchri";
test_int(strchri("bozoman", 'm'), 4, "");
test_int(strchri("bozoman", 'v'), 0 - 1, "");
test_int(strchri("", 'v'), 0 - 1, "");
}