Home | History | Annotate | Download | only in pppd

Lines Matching refs:digit

1118     int value, digit, got, n;
1253 digit = toupper(c) - '0';
1254 if (digit > 10)
1255 digit += '0' + 10 - 'A';
1256 value = (value << 4) + digit;