Search | Google it | Results 1 - 1 of 1 for funcall:to_digit (0.00 seconds) |
244: #define to_digit(c) ((c) - '0') 245: #define is_digit(c) ((unsigned)to_digit(c) <= 9) 246: #define to_char(n) ((n) + '0') 422: (val) *= 10; \ 423: if ((val) > INT_MAX - to_digit((dig))) \ 424: goto overflow; \ 425: (val) += to_digit((dig)); \ 426: } while (0)