#include <inttypes.h>
Include dependency graph for human.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Defines | |
#define | HUMAN_H_ 1 |
#define | LONGEST_HUMAN_READABLE |
#define | PARAMS(Args) () |
Enumerations | |
enum | human_inexact_style { human_floor = -1, human_round_to_even = 0, human_ceiling = 1 } |
Functions | |
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 *)) |
|
|
|
Value: ((sizeof (uintmax_t) + sizeof (int)) \ * CHAR_BIT / 3) |
|
|
|
00027 { 00028 human_floor = -1, 00029 human_round_to_even = 0, 00030 human_ceiling = 1 00031 }; |
|
|
|
|
|
|