Return true if N is a known integer value. On many file systems, UINTMAX_MAX represents an unknown value; on AIX, UINTMAX_MAX - 1 represents unknown. Use a rule that works on AIX file systems, and that almost-always works on other types. */
| 851 | represents unknown. Use a rule that works on AIX file systems, and |
| 852 | that almost-always works on other types. */ |
| 853 | static bool |
| 854 | known_value (uintmax_t n) |
| 855 | { |
| 856 | return n < UINTMAX_MAX - 1; |
| 857 | } |
| 858 | |
| 859 | /* Like human_readable (N, BUF, human_output_opts, INPUT_UNITS, OUTPUT_UNITS), |
| 860 | except: |
no outgoing calls
no test coverage detected