mirror of
https://github.com/neovim/neovim.git
synced 2026-04-01 13:22:08 +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.