Searched refs:n_str (Results 1 – 3 of 3) sorted by relevance
/coreutils/gl/lib/ |
D | xdectoint.c | 37 __xnumtoint (char const *n_str, int base, __xdectoint_t min, __xdectoint_t max, in __xnumtoint() argument 43 s_err = __xstrtol (n_str, nullptr, base, &tnum, suffixes); in __xnumtoint() 71 "%s: %s", err, quote (n_str)); in __xnumtoint() 84 __xdectoint (char const *n_str, __xdectoint_t min, __xdectoint_t max, in __xdectoint() argument 87 return __xnumtoint (n_str, 10, min, max, suffixes, err, err_exit); in __xdectoint()
|
D | xdectoint.h | 24 type name (char const *n_str, type min, type max, \ 28 type name (char const *n_str, int base, type min, type max, \
|
/coreutils/src/ |
D | pr.c | 428 static void getoptnum (char const *n_str, int min, int *num, 1155 getoptnum (char const *n_str, int min, int *num, char const *err) in getoptnum() argument 1157 intmax_t tnum = xdectoimax (n_str, min, INT_MAX, "", err, 0); in getoptnum()
|