Lines Matching defs:c
4 * Copyright (c) 1992, 1993
7 * Copyright (c) 2011 The FreeBSD Foundation
53 char c;
62 c = *s++;
63 } while (isspace((unsigned char)c));
64 if (c == '-') {
66 c = *s++;
69 if (c == '+')
70 c = *s++;
73 c == '0' && (*s == 'x' || *s == 'X') &&
77 c = s[1];
82 base = c == '0' ? 8 : 10;
87 for ( ; ; c = *s++) {
88 if (c >= '0' && c <= '9')
89 c -= '0';
90 else if (c >= 'A' && c <= 'Z')
91 c -= 'A' - 10;
92 else if (c >= 'a' && c <= 'z')
93 c -= 'a' - 10;
96 if (c >= base)
98 if (any < 0 || acc > cutoff || (acc == cutoff && c > cutlim))
102 acc = acc * (unsigned long long)base + (unsigned long long)c;