blob: 4055bfe97c7c10de033ab6a7506f34b6f7391b01 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef HUMAN_READABLE_H
#define HUMAN_READABLE_H
#define NO_PRINT 1
#define HN_DECIMAL 0x01
#define HN_NOSPACE 0x02
#define HN_B 0x04
#define HN_DIVISOR_1000 0x08
#define HN_GETSCALE 0x10
#define HN_AUTOSCALE 0x20
#endif
|