PxStrcpy()
Copy a string.
- APPLIES TO
-
1.0.0
- SYNOPSIS
-
PxChar_t* PxStrcpy(char *d, char const *s);
- ARGUMENTS
|
|
|
- RETURN VALUES
-
-
Pointer to destination
-
- DESCRIPTION
-
PxStrcpy copies the null terminated string at "s" to "d" and returns "d".
- USAGE
-
#include "pxdef.h" PxChar_t* des = PxStrcpy(d, s);