one:
/* strcpy: copy t to s; pointer version 3 */
void strcpy(char *s, char *t)
{
while (*s++ = *t++)
;
}
two:
*p++ = val; /* push val onto stack */
val = *--p; /* pop top of stack into val */
one:
/* strcpy: copy t to s; pointer version 3 */
void strcpy(char *s, char *t)
{
while (*s++ = *t++)
;
}
two:
*p++ = val; /* push val onto stack */
val = *--p; /* pop top of stack into val */