Home | History | Annotate | Download | only in telephony

Lines Matching refs:hexdigits

92     const char*  hexdigits = "0123456789abcdef";
112 p[2] = hexdigits[ (c) >> 4 ];
113 p[3] = hexdigits[ (c) & 15 ];