12345678910111213141516171819202122232425262728293031 |
- #ifndef CLR32BITMAP_SOURCE
- #define CLR32BITMAP_SOURCE
- #include "../tools/flags.h"
- #include "../tools/endian.h"
- void clr32bitmap (uint32_t * map, unsigned bit)
- {
- map [bit / _bits (* map)] &= ~ HTOLE32 (1 << (bit % _bits (* map)));
- return;
- }
- #endif
|