Home | History | Annotate | Download | only in pppd

Lines Matching full:endp

349     char *p, *endp;
354 n = strtol(p, &endp, 16);
355 if (p == endp) {
360 p = endp;
871 char *sep, *endp = NULL;
880 port = strtol(sep+1, &endp, 10);
881 if (port < 0 || endp == sep+1 || sep == dest) {