Lines Matching refs:strcpy
3 #define strcpy(dest, src) \ macro
19 strcpy(&gbuf[4], "Hi there"); in test1()
25 strcpy(gbuf, "Hi there"); in test2()
31 strcpy(&gbuf[100], "Hi there"); in test3()
37 strcpy((char*)(void*)&gbuf[-1], "Hi there"); in test4()
44 strcpy(gp, "Hi there"); in test5()
52 strcpy(&buf[4], "Hi there"); in test6()
62 strcpy((++i, gbuf), "Hi there"); in test7()
70 strcpy(buf[++gi], "Hi there"); in test8()
77 strcpy((char *)((++gi) + gj), "Hi there"); in test9()
85 strcpy(*(++p), "Hi there"); in test10()
92 strcpy(gp = gbuf, "Hi there"); in test11()
99 strcpy(++gp, "Hi there"); in test12()
106 strcpy(gp++, "Hi there"); in test13()
113 strcpy(--gp, "Hi there"); in test14()
120 strcpy(gp--, "Hi there"); in test15()
127 strcpy(gp += 1, "Hi there"); in test16()