Home | History | Annotate | Download | only in strings

Lines Matching refs:temp

28   char *temp;
33 // succession of digits. If it finds some digits, it sets temp to point to
37 // If there were no digits at all, strtol() sets temp to be c_str (the start
39 *value = strtol(c_str, &temp, 0); // NOLINT
41 // temp != c_str means that the input string contained at least one digit (see
42 // above). *temp == '\0' means the input string does not contain any random
44 return (temp != c_str) && (*temp == '\0');
48 char *temp;
49 *value = strtoll(c_str, &temp, 0); // NOLINT
52 return (temp != c_str) && (*temp == '\0');
56 char *temp;
57 *value = strtod(c_str, &temp);
60 return (temp != c_str) && (*temp == '\0');