Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 | 16x | /**
* ADR-034: Bitmap backing types for C output
*/
const BITMAP_BACKING_TYPE: Record<string, string> = {
bitmap8: "uint8_t",
bitmap16: "uint16_t",
bitmap24: "uint32_t", // 24-bit uses 32-bit backing for simplicity
bitmap32: "uint32_t",
};
export default BITMAP_BACKING_TYPE;
|