MicrOS
|
#include "../string.h"
Functions | |
char * | strcpy (char *destination, const char *source) |
Copy string. More... | |
char* strcpy | ( | char * | destination, |
const char * | source | ||
) |
Copy string.
Copies the C string pointed by source into the array pointed by destination, including the terminating null character (and stopping at that point).
destination | Pointer to the destination array where the content is to be copied. |
source | C string to be copied. |