Searched refs:o1hex (Results 1 – 1 of 1) sorted by relevance
47 void o1hex(int u) {u&=0x0f; if(u>=10) o1ch(u-10+'A'); else o1ch(u+'0');} in o1hex() function48 void o2hex(int u) {o1hex(u>> 4); o1hex(u);} in o2hex()