mirror of
https://github.com/neovim/neovim.git
synced 2026-02-01 09:34:29 +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.