awStrncpyUC
charUC* awStrncpyUC(
charUC *dest,
charUC *src,
size_t n);
dest | The string being copied to. |
src | The Unicode string being copied. |
n | The number of characters to be copied. |
Copies no more than n Unicode characters into dest and returns a pointer to the dest string.
If src is less than n characters long, '\0' characters will be added to dest. If src is more than n characters long, dest will not be terminated with a '\0' character.