Searched refs:tosize (Results 1 – 2 of 2) sorted by relevance
14 void vim_strcat(char_u *to, char_u *from, size_t tosize);
518 vim_strcat(char_u *to, char_u *from, size_t tosize) in vim_strcat() argument523 if (tolen + fromlen + 1 > tosize) in vim_strcat()525 mch_memmove(to + tolen, from, tosize - tolen - 1); in vim_strcat()526 to[tosize - 1] = NUL; in vim_strcat()