Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:strcpy

3 #define strcpy(dest, src) \
19 strcpy(&gbuf[4], "Hi there");
25 strcpy(gbuf, "Hi there");
31 strcpy(&gbuf[100], "Hi there");
37 strcpy((char*)(void*)&gbuf[-1], "Hi there");
44 strcpy(gp, "Hi there");
52 strcpy(&buf[4], "Hi there");
62 strcpy((++i, gbuf), "Hi there");
70 strcpy(buf[++gi], "Hi there");
77 strcpy((char *)((++gi) + gj), "Hi there");
85 strcpy(*(++p), "Hi there");
92 strcpy(gp = gbuf, "Hi there");
99 strcpy(++gp, "Hi there");
106 strcpy(gp++, "Hi there");
113 strcpy(--gp, "Hi there");
120 strcpy(gp--, "Hi there");
127 strcpy(gp += 1, "Hi there");