mirror of
https://github.com/neovim/neovim.git
synced 2026-08-16 12:28:30 +00:00
Problem: Using xstrlcpy() when the exact length of the string to be
copied is known is not ideal because it requires adding 1 to
the length and an unnecessary strlen().
Solution: Add xmemcpyz() and use it in place of such xstrlcpy() calls.