Lines Matching defs:end
81 char *end;
89 end = (char *)nptr;
90 while(ISBLANK(end[0])) {
91 end++;
95 if(end[0] == '-') {
97 end++;
99 else if(end[0] == '+') {
100 end++;
102 else if(end[0] == '\0') {
105 *endptr = end;
111 if(end[0] == '0' && end[1] == 'x') {
113 end += 2;
117 else if(end[0] == '0') {
119 end++;
134 for(i = get_char(end[0], base);
136 end++, i = get_char(end[0], base)) {
163 *endptr = end;
220 char *end;
233 number = strtooff(str, &end, base);
235 *endp = end;
239 else if(str == end)