Derive-C
Loading...
Searching...
No Matches
utils.h
Go to the documentation of this file.
1#pragma once
2
3#define DC_BITSET_STATIC_CAPACITY_TO_BYTES(CAPACITY) ((CAPACITY + 7) / 8)
4#define DC_BITSET_STATIC_INDEX_TO_BYTES(INDEX) (INDEX >> 3)
5#define DC_BITSET_STATIC_INDEX_TO_OFFSET(INDEX) (INDEX & 0x7)
6#define DC_BITSET_STATIC_OFFSET_TO_MASK(OFFSET) (1 << OFFSET)