| D | libc.c | 58 strcpy(char *to, const char *from) in strcpy() argument 62 for (; (*to = *from); ++from, ++to); in strcpy() 68 strncpy(char *to, const char *from, size_t length) in strncpy() argument 72 for (; (*to = *from) != '\0' && length > 0; ++from, ++to, length--); in strncpy()
|