Searched refs:vim_strbyte (Results 1 – 8 of 8) sorted by relevance
18 char_u *vim_strbyte(char_u *string, int c);
1077 p2 = vim_strbyte(p1 + 1, '*'); // find second '*' in helptags_one()
4898 while ((s = vim_strbyte(s, c)) != NULL) in bt_regexec_both()4958 s = vim_strbyte(rex.line + col, prog->regstart); in bt_regexec_both()
647 vim_strbyte(char_u *string, int c) in vim_strbyte() function
1492 if (vim_strbyte(mp->m_keys, K_SPECIAL) != NULL) in check_abbr()
810 while ((p = vim_strbyte(p, 0xef)) != NULL) in remove_bom()
5632 s = vim_strbyte(rex.line + *colp, c); in skip_to_start()
13364 Solution: Use vim_strbyte() instead of vim_strchr(). (Yasuhiro Matsumoto)