![]() |
SymCpy | Function (ROM Call 0x82) |
vat.h |
void SymCpy (char *dest, const char *src); |
Copies a symbol name.
SymCpy copies at most 8 characters from string src to dest, then fills rest of the dest up to 8 bytes, so dest must be at least 8 bytes long. It seems that calling this function is equal to
strncpy (dest, src, 8);except in the fact that function SymCpy is void. See strncpy for more info.