Function stdio_strcpy
Defined in File string.h
Function Documentation
-
char *stdio_strcpy(char *dest, const char *src)
Copy one string over another.
This routine copies one string over top of another until the NULL byte.
The src/dest strings must NOT overlap. The null byte of src is also copied into dest. If either
src
ordest
is NULL, nothing is done.- Parameters:
dest – Copy destination.
src – Copy source.
- Returns:
Pointer to dest, unless
dest
is NULL, then NULL.