Lines Matching defs:endp
1732 char *endp;
1733 unsigned long scope = strtoul(zoneid, &endp, 10);
1734 if(!*endp && (scope < UINT_MAX))
2940 char *endp = NULL;
2944 long portparse = strtol(host_portno, &endp, 10);
2945 if((endp && *endp) || (portparse < 0) || (portparse > 65535)) {
3023 char *endp = NULL;
3024 long port_to_match = strtol(ptr, &endp, 10);
3025 if((endp == ptr_next) && (port_to_match == conn->remote_port)) {