Function stdio_strcpy

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 or dest is NULL, nothing is done.

Parameters:
  • dest – Copy destination.

  • src – Copy source.

Returns:

Pointer to dest, unless dest is NULL, then NULL.