forked from xdebug/xdebug
-
Notifications
You must be signed in to change notification settings - Fork 0
/
xdebug_set.c
71 lines (57 loc) · 2.05 KB
/
xdebug_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
68
69
70
71
/*
+----------------------------------------------------------------------+
| Xdebug |
+----------------------------------------------------------------------+
| Copyright (c) 2002-2018 Derick Rethans |
+----------------------------------------------------------------------+
| This source file is subject to version 1.01 of the Xdebug license, |
| that is bundled with this package in the file LICENSE, and is |
| available at through the world-wide-web at |
| https://xdebug.org/license.php |
| If you did not receive a copy of the Xdebug license and are unable |
| to obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Derick Rethans <[email protected]> |
+----------------------------------------------------------------------+
*/
#include <stdlib.h>
#include "xdebug_set.h"
xdebug_set *xdebug_set_create(unsigned int size)
{
xdebug_set *tmp;
tmp = calloc(1, sizeof(xdebug_set));
tmp->size = size;
size = (size / 8) + 1 + ((size % 8) != 0);
tmp->setinfo = calloc(1, size);
return tmp;
}
void xdebug_set_free(xdebug_set *set)
{
free(set->setinfo);
free(set);
}
void xdebug_set_add(xdebug_set *set, unsigned int position)
{
unsigned char *byte;
unsigned int bit;
byte = &(set->setinfo[position / 8]);
bit = position % 8;
*byte = *byte | 1 << bit;
}
void xdebug_set_remove(xdebug_set *set, unsigned int position)
{
unsigned char *byte;
unsigned int bit;
byte = &(set->setinfo[position / 8]);
bit = position % 8;
*byte = *byte & ~(1 << bit);
}
int xdebug_set_in_ex(xdebug_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));
}