KILO
static const unit_type units[] = { NONE, KILO, MEGA, GIGA, TERA, PETA, EXA };
#define MEGA (KILO * 1024)
if (bin >= KILO) {
bin /= KILO;