mirror of
https://github.com/neovim/neovim.git
synced 2025-09-27 21:48:35 +00:00
eval: Move remaining get_tv_string* functions to eval/typval.c
This commit is contained in:
@@ -625,7 +625,7 @@ static int utf_safe_read_char_adv(const char_u **s, size_t *n)
|
||||
* Get character at **pp and advance *pp to the next character.
|
||||
* Note: composing characters are skipped!
|
||||
*/
|
||||
int mb_ptr2char_adv(char_u **pp)
|
||||
int mb_ptr2char_adv(const char_u **const pp)
|
||||
{
|
||||
int c;
|
||||
|
||||
@@ -638,7 +638,7 @@ int mb_ptr2char_adv(char_u **pp)
|
||||
* Get character at **pp and advance *pp to the next character.
|
||||
* Note: composing characters are returned as separate characters.
|
||||
*/
|
||||
int mb_cptr2char_adv(char_u **pp)
|
||||
int mb_cptr2char_adv(const char_u **pp)
|
||||
{
|
||||
int c;
|
||||
|
||||
|
Reference in New Issue
Block a user