diff options
author | Alexis211 <alexis211@gmail.com> | 2010-02-06 20:51:56 +0100 |
---|---|---|
committer | Alexis211 <alexis211@gmail.com> | 2010-02-06 20:51:56 +0100 |
commit | 6a52d123672b7a00af6e22b4c138205be2042a94 (patch) | |
tree | cd9b0a13490159369a66c850850596fd4b418139 /src/stem/lib/bitset.h | |
parent | 3558f18daf50281ee1cd68cca96cd967dbac04ba (diff) | |
download | TCE-6a52d123672b7a00af6e22b4c138205be2042a94.tar.gz TCE-6a52d123672b7a00af6e22b4c138205be2042a94.zip |
Reorganisation
Diffstat (limited to 'src/stem/lib/bitset.h')
-rw-r--r-- | src/stem/lib/bitset.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/src/stem/lib/bitset.h b/src/stem/lib/bitset.h deleted file mode 100644 index fe9e8c2..0000000 --- a/src/stem/lib/bitset.h +++ /dev/null @@ -1,19 +0,0 @@ -#ifndef DEF_BITSET_H -#define DEF_BITSET_H - -#include <types.h> - -#define INDEX_FROM_BIT(a) (a/(8*4)) -#define OFFSET_FROM_BIT(a) (a%(8*4)) - -struct bitset { - uint32_t *bits; - uint32_t size; -}; - -void bitset_set(struct bitset* t, uint32_t num); -void bitset_clear(struct bitset* t, uint32_t num); -uint32_t bitset_test(struct bitset* t, uint32_t num); -uint32_t bitset_firstFree(struct bitset* t); - -#endif |