Lines Matching defs:strcpy
10 #define strcpy(dest, src) \
26 strcpy(&gbuf[4], "Hi there");
32 strcpy(gbuf, "Hi there");
38 strcpy(&gbuf[100], "Hi there");
44 strcpy((char*)(void*)&gbuf[-1], "Hi there");
51 strcpy(gp, "Hi there");
59 strcpy(&buf[4], "Hi there");
69 strcpy((++i, gbuf), "Hi there");
77 strcpy(buf[++gi], "Hi there");
84 strcpy((char *)((++gi) + gj), "Hi there");
92 strcpy(*(++p), "Hi there");
99 strcpy(gp = gbuf, "Hi there");
106 strcpy(++gp, "Hi there");
113 strcpy(gp++, "Hi there");
120 strcpy(--gp, "Hi there");
127 strcpy(gp--, "Hi there");
134 strcpy(gp += 1, "Hi there");