lv_strncat() function
Copies up to src_len characters from the string pointed to by src to the end of the string pointed to by dst. A terminating null character is appended to dst even if no null character was encountered in src after src_len characters were copied.
Arguments
dst
Pointer to the destination string where the content is to be appended.
src
Pointer to the source of data to be copied.
src_len
Maximum number of characters from src to be copied to the end of dst.
Return value
A pointer to the destination string, which is dst.