| 
									
										
										
										
											1991-02-19 12:39:46 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  | #ifndef Py_BITSET_H
 | 
					
						
							|  |  |  | #define Py_BITSET_H
 | 
					
						
							|  |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | extern "C" { | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | /* Bitset interface */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define BYTE		char
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | typedef BYTE *bitset; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  | bitset newbitset(int nbits); | 
					
						
							|  |  |  | void delbitset(bitset bs); | 
					
						
							| 
									
										
										
										
											1994-12-30 15:33:50 +00:00
										 |  |  | #define testbit(ss, ibit) (((ss)[BIT2BYTE(ibit)] & BIT2MASK(ibit)) != 0)
 | 
					
						
							| 
									
										
										
										
											2000-07-08 23:37:28 +00:00
										 |  |  | int addbit(bitset bs, int ibit); /* Returns 0 if already set */ | 
					
						
							|  |  |  | int samebitset(bitset bs1, bitset bs2, int nbits); | 
					
						
							|  |  |  | void mergebitset(bitset bs1, bitset bs2, int nbits); | 
					
						
							| 
									
										
										
										
											1990-10-14 12:07:46 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #define BITSPERBYTE	(8*sizeof(BYTE))
 | 
					
						
							|  |  |  | #define NBYTES(nbits)	(((nbits) + BITSPERBYTE - 1) / BITSPERBYTE)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define BIT2BYTE(ibit)	((ibit) / BITSPERBYTE)
 | 
					
						
							|  |  |  | #define BIT2SHIFT(ibit)	((ibit) % BITSPERBYTE)
 | 
					
						
							|  |  |  | #define BIT2MASK(ibit)	(1 << BIT2SHIFT(ibit))
 | 
					
						
							|  |  |  | #define BYTE2BIT(ibyte)	((ibyte) * BITSPERBYTE)
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1993-07-28 09:05:47 +00:00
										 |  |  | #ifdef __cplusplus
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | #endif /* !Py_BITSET_H */
 |