1991-02-19 08:39:46 -04:00
|
|
|
|
2000-07-08 20:37:28 -03:00
|
|
|
#ifndef Py_BITSET_H
|
|
|
|
#define Py_BITSET_H
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
1990-10-14 09:07:46 -03:00
|
|
|
/* Bitset interface */
|
|
|
|
|
2017-11-28 11:56:10 -04:00
|
|
|
#define BYTE char
|
1990-10-14 09:07:46 -03:00
|
|
|
typedef BYTE *bitset;
|
|
|
|
|
1994-12-30 11:33:50 -04:00
|
|
|
#define testbit(ss, ibit) (((ss)[BIT2BYTE(ibit)] & BIT2MASK(ibit)) != 0)
|
1990-10-14 09:07:46 -03:00
|
|
|
|
2017-11-28 11:56:10 -04:00
|
|
|
#define BITSPERBYTE (8*sizeof(BYTE))
|
|
|
|
#define BIT2BYTE(ibit) ((ibit) / BITSPERBYTE)
|
|
|
|
#define BIT2SHIFT(ibit) ((ibit) % BITSPERBYTE)
|
|
|
|
#define BIT2MASK(ibit) (1 << BIT2SHIFT(ibit))
|
1990-10-14 09:07:46 -03:00
|
|
|
|
1993-07-28 06:05:47 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif /* !Py_BITSET_H */
|