strncat
Concatene two strings to a new string. The first string is copied. The
second string is copied until the nth character.
Prototype :
fun [S S I] S
- S : the first string
- S : the second string
- I : the max length. Can NOT be negative or nil.
Return : S the string result
Error :
- EOK if no error.
- EARGNIL if the two strings are nil.
- ESOTHER if only one string is nil.
- EINVAL if the given size is nil.
- EVM if a memory error occurs. The VM will exit and more information
could be found in the log file (if activated in the debug mode level).
See also :
strcat