Home | History | Annotate | Download | only in lib

Lines Matching defs:endp

413 		char *endp;
415 n = strtoul(cp, &endp, 0);
419 if (endp == cp) /* no digits */
424 if (*endp == '\0')
427 if (i == 3 || *endp != '.')
429 cp = endp + 1;
446 char *endp;
448 n = strtoul(cp, &endp, 16);
452 if (endp == cp) /* no digits */
457 if (*endp == '\0')
460 if (i == 3 || *endp != ':')
462 cp = endp + 1;