C/C++
bitvect.asc
Associated article: Implementing Bit Vectors in C
Tags: Web Development C/C++ Design
_BIT VECTORS IN C_ by James Blustein Listing One /* BITS_SZ -- BITS_SZ is the number of bits in a single bits' type. */ /* Definition of BITS_SZ */ #ifdef CHAR_BIT /* assumes typedef unsigned char bits */ #define BITS_SZ (CHAR_...


