PxStrcpy()

Copy a string.

APPLIES TO

8.2.0

SYNOPSIS
PxChar_t* PxStrcpy(char *d, char const *s);
ARGUMENTS
d

Address to copy the string to

s

Address to copy the string from

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);