Lines Matching refs:endp
158 char *endp; \
159 variable = convert (strtou32 (line, &endp, base)); \
160 if (endp == line) \
162 else if (terminator_p (*endp)) \
164 ++endp; \
165 while (swallow && terminator_p (*endp)); \
166 else if (*endp != '\0') \
168 line = endp; \
173 char *endp; \
177 variable = convert (strtou32 (line, &endp, base)); \
178 if (endp == line) \
180 if (terminator_p (*endp)) \
182 ++endp; \
183 while (swallow && terminator_p (*endp)); \
184 else if (*endp != '\0') \
186 line = endp; \