diff --git a/sdk/head/units.h b/sdk/head/units.h new file mode 100644 index 0000000..1a038ca --- /dev/null +++ b/sdk/head/units.h @@ -0,0 +1,19 @@ +/* + * Copyright (c) 2026, Chloe M. + * Provided under the BSD-3 clause. + * + * Description: Unit definitions + * Author: Chloe M. + */ + +#ifndef _SDK_UNITS_H_ +#define _SDK_UNITS_H_ 1 + +/* Storage size units */ +#define UNIT_GIB 0x40000000 +#define UNIT_MIB 0x100000 + +/* Time units */ +#define UNIT_FS_PER_MS 1000000000000ULL + +#endif /* !_SDK_UNITS_H_ */