Home | History | Annotate | Download | only in pppd

Lines Matching defs:endp

354     char *p, *endp;
359 n = strtol(p, &endp, 16);
360 if (p == endp) {
365 p = endp;
875 char *sep, *endp = NULL;
884 port = strtol(sep+1, &endp, 10);
885 if (port < 0 || endp == sep+1 || sep == dest) {