You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
365 B
C
20 lines
365 B
C
19 years ago
|
#ifndef _BITSET_H_
|
||
|
#define _BITSET_H_
|
||
|
|
||
|
#include <stddef.h>
|
||
|
|
||
|
typedef struct {
|
||
|
size_t *bits;
|
||
|
size_t nbits;
|
||
|
} bitset;
|
||
|
|
||
|
bitset *bitset_init(size_t nbits);
|
||
|
void bitset_reset(bitset *set);
|
||
|
void bitset_free(bitset *set);
|
||
|
|
||
|
void bitset_clear_bit(bitset *set, size_t pos);
|
||
|
void bitset_set_bit(bitset *set, size_t pos);
|
||
|
int bitset_test_bit(bitset *set, size_t pos);
|
||
|
|
||
|
#endif
|