parse_bounded_int
return parse_bounded_int(buffer, count, result, base, INTMAX_MIN, INTMAX_MAX);
int err = parse_bounded_int(buffer, count, &parsed, base, INT_MIN, INT_MAX);
int err = parse_bounded_int(buffer, count, &parsed, base, LONG_MIN, LONG_MAX);