Lines Matching refs:ptr
959 char *ptr; in test_strsep() local
1058 ptr = strsep(&cp, ":"); in test_strsep()
1059 equal(ptr, "", 75); in test_strsep()
1060 check(ptr == one + 3, 76); in test_strsep()
1066 ptr = strsep(&cp, ":."); in test_strsep()
1067 equal(ptr, "", 79); in test_strsep()
1068 check(ptr == one + 3, 80); in test_strsep()
1076 ptr = strsep(&cp, ","); in test_strsep()
1077 equal(ptr, "", 83); in test_strsep()
1078 check(ptr == one, 84); in test_strsep()
1083 ptr = strsep(&cp, ""); in test_strsep()
1084 equal(ptr, "", 86); in test_strsep()
1085 check(ptr == one , 87); in test_strsep()