Description
Copy string from source CODE location to destination RAM location upto a specified maximumDefinition
strncpy_code(char *dst, char * const src, int cnt)Library
LIB/str_lib.basUsage
On entry:dst is a pointer to a RAM buffer holding the destination stringOn exit:
src is a pointer to a CODE memory buffer holding the source string
cnt is the maximum number of characters to be copiedThere is no return value