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 + 7ULL) / 8ULL)
4#define DC_BITSET_STATIC_INDEX_TO_BYTES(INDEX) (INDEX >> (uint8_t)3)
5#define DC_BITSET_STATIC_INDEX_TO_OFFSET(INDEX) (INDEX & 0x7)
6#define DC_BITSET_STATIC_OFFSET_TO_MASK(OFFSET) (uint8_t)((uint8_t)1 << (uint8_t)OFFSET)