Home
last modified time | relevance | path

Searched refs:endp (Results 1 – 4 of 4) sorted by relevance

/coreutils/src/
Doperand2sig.c52 char *endp; in operand2sig() local
53 long int l = (errno = 0, strtol (operand, &endp, 10)); in operand2sig()
55 signum = (operand == endp || *endp || errno || i != l ? -1 : i); in operand2sig()
Dkill.c182 char *endp; in send_signals() local
183 intmax_t n = (errno = 0, strtoimax (arg, &endp, 10)); in send_signals()
187 || arg == endp || *endp) in send_signals()
Dcat.c135 char *endp = line_num_end; in next_line_num() local
138 if ((*endp)++ < '9') in next_line_num()
140 *endp-- = '0'; in next_line_num()
142 while (endp >= line_num_start); in next_line_num()
Dseq.c408 char *endp = s + *s_len - 1; in incr() local
412 if ((*endp)++ < '9') in incr()
414 *endp-- = '0'; in incr()
416 while (endp >= s); in incr()