-
-
Notifications
You must be signed in to change notification settings - Fork 89
/
set.c
67 lines (53 loc) · 1.63 KB
/
set.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
+----------------------------------------------------------------------+
| Copyright (c) 1997-2019 Derick Rethans |
+----------------------------------------------------------------------+
| This source file is subject to the 2-Clause BSD license which is |
| available through the LICENSE file, or online at |
| http://opensource.org/licenses/bsd-license.php |
+----------------------------------------------------------------------+
| Authors: Derick Rethans <[email protected]> |
+----------------------------------------------------------------------+
*/
/* $Id: set.c,v 1.1 2006-09-26 09:40:26 derick Exp $ */
#include <stdlib.h>
#include <math.h>
#include "set.h"
vld_set *vld_set_create(unsigned int size)
{
vld_set *tmp;
tmp = calloc(1, sizeof(vld_set));
tmp->size = size;
size = ceil((size + 7) / 8);
tmp->setinfo = calloc(1, size);
return tmp;
}
void vld_set_free(vld_set *set)
{
free(set->setinfo);
free(set);
}
void vld_set_add(vld_set *set, unsigned int position)
{
unsigned char *byte;
unsigned int bit;
byte = &(set->setinfo[position / 8]);
bit = position % 8;
*byte = *byte | 1 << bit;
}
void vld_set_remove(vld_set *set, unsigned int position)
{
unsigned char *byte;
unsigned int bit;
byte = &(set->setinfo[position / 8]);
bit = position % 8;
*byte = *byte & ~(1 << bit);
}
int vld_set_in_ex(vld_set *set, unsigned int position, int noisy)
{
unsigned char *byte;
unsigned int bit;
byte = &(set->setinfo[position / 8]);
bit = position % 8;
return (*byte & (1 << bit));
}