mirror of
https://github.com/neovim/neovim.git
synced 2026-02-04 19:07:15 +00:00
Current uses of vim_strup() calls memcpy()/strcpy() before calling vim_strup(). This results in 2 * strlen(string) operations. We can trivially convert to lowercase while copying the string instead.