9 lines
161 B
Plaintext
9 lines
161 B
Plaintext
|
main()
|
||
|
{
|
||
|
name = "strchri";
|
||
|
|
||
|
test_int(strchri("bozoman", 'm'), 4, "");
|
||
|
test_int(strchri("bozoman", 'v'), 0 - 1, "");
|
||
|
test_int(strchri("", 'v'), 0 - 1, "");
|
||
|
}
|