Lines Matching defs:tail
84 * returning tail points to the first character that is not part of
85 * the integer number. If no number was found then tail points to the
88 strToI(const char *string, const char **tail, int base)
133 *tail = numberFound ? string : start;
144 * returning tail points to the first character that is not part of
145 * the floating point number. If no number was found then tail points
150 strToF(const char *string, const char **tail)
180 *tail = start;
183 *tail = string;
190 *tail = expTail;
216 const char *tail = NULL;
223 tail = string + 5;
226 tail = string + 4;
233 v->_int = strToI(string, &tail, 0);
236 v->_float = strToF(string, &tail);
246 if (tail == string)
249 if (*tail)
250 tail += strspn(tail, " \f\n\r\t\v");
251 if (*tail)