Home
last modified time | relevance | path

Searched refs:nr2hex (Results 1 – 1 of 1) sorted by relevance

/vim-8.2.3635/src/
H A Dcharset.c17 static unsigned nr2hex(unsigned c);
632 buf[++i] = nr2hex((unsigned)c >> 12); in transchar_hex()
633 buf[++i] = nr2hex((unsigned)c >> 8); in transchar_hex()
635 buf[++i] = nr2hex((unsigned)c >> 4); in transchar_hex()
636 buf[++i] = nr2hex((unsigned)c); in transchar_hex()
647 nr2hex(unsigned c) in nr2hex() function