ST10StrNCpy
ST = String functions
The ST10StrNCpy() function copies the first n characters of the array pointed
to by source into the array pointed to by destination.
It returns a pointer to the destination.
Like strncpy() in c language
IMPLEMENTATION
ST10StrNCpy(destination, source, source_start, num)
Parameters:
| IN/OUT | VARIABLE TYPE | EXAMPLE NAME | DIM | |
|---|---|---|---|---|
| OUT | ARRGBL | destination | B | |
| IN | ARRGBL | source | B | |
| IN | GLOBAL/CONST | source_start | L | |
| IN | GLOBAL/CONST | num | L | |