aboutsummaryrefslogtreecommitdiff
path: root/chad/memory-units.h
blob: f2534fb4195dbfca7babd48f0246c1f321c81fba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef MEMORY_UNITS
#define MEMORY_UNITS

#define KB  1000ull
#define MB  1000000ull
#define GB  1000000000ull
#define TB  1000000000000ull
#define KiB 1024ull
#define MiB 1048576ull
#define GiB 1073741824ull
#define TiB 1099511627776ull

#endif