Lines Matching refs:strcpy
28 TEST(s, strcpy(b, b+16), b, "wrong return %p != %p");
29 TEST_S(s, "abc", "strcpy gave incorrect string");
30 TEST(s, strcpy(b+1, b+16), b+1, "wrong return %p != %p");
31 TEST_S(s, "abc", "strcpy gave incorrect string");
32 TEST(s, strcpy(b+2, b+16), b+2, "wrong return %p != %p");
33 TEST_S(s, "abc", "strcpy gave incorrect string");
34 TEST(s, strcpy(b+3, b+16), b+3, "wrong return %p != %p");
35 TEST_S(s, "abc", "strcpy gave incorrect string");
37 TEST(s, strcpy(b+1, b+17), b+1, "wrong return %p != %p");
38 TEST_S(s, "bc", "strcpy gave incorrect string");
39 TEST(s, strcpy(b+2, b+18), b+2, "wrong return %p != %p");
40 TEST_S(s, "c", "strcpy gave incorrect string");
41 TEST(s, strcpy(b+3, b+19), b+3, "wrong return %p != %p");
42 TEST_S(s, "", "strcpy gave incorrect string");
57 strcpy(b, "abc");
62 strcpy(b, "aaababccdd0001122223");
69 strcpy(b, "abc 123; xyz; foo");