Mercurial > hg > octave-nkf > gnulib-hg
diff lib/human.h @ 1864:734d9b0f9fce
(enum human_inexact_style): New enum.
(human_readable_inexact): New decl.
author | Jim Meyering <jim@meyering.net> |
---|---|
date | Sun, 04 Jul 1999 08:47:49 +0000 (1999-07-04) |
parents | 9e16d9bc8891 |
children | 98b37cab8b76 |
line wrap: on
line diff
--- a/lib/human.h +++ b/lib/human.h @@ -23,7 +23,16 @@ # endif # endif +enum human_inexact_style +{ + human_floor = -1, + human_round_to_even = 0, + human_ceiling = 1 +}; + char *human_readable PARAMS ((uintmax_t, char *, int, int)); +char *human_readable_inexact PARAMS ((uintmax_t, char *, int, int, + enum human_inexact_style)); void human_block_size PARAMS ((char const *, int, int *));