Home
last modified time | relevance | path

Searched refs:tosize (Results 1 – 2 of 2) sorted by relevance

/vim-8.2.3635/src/proto/
H A Dstrings.pro14 void vim_strcat(char_u *to, char_u *from, size_t tosize);
/vim-8.2.3635/src/
H A Dstrings.c518 vim_strcat(char_u *to, char_u *from, size_t tosize) in vim_strcat() argument
523 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()