forked from scanmem/scanmem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsets.h
53 lines (41 loc) · 1.66 KB
/
sets.h
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
/*
Create sets.
Copyright (C) 2016-2017 Bijan Kazemi <[email protected]>
This file is part of libscanmem.
This library is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef SETS_H
#define SETS_H
#include <stdlib.h>
struct set {
size_t size; /* size of set (used) */
size_t *buf; /* value buffer */
};
static inline void set_cleanup(struct set *set)
{
if (set)
free(set->buf);
}
/* iterate over set from front (forwards) */
#define foreach_set_fw(i, set) \
for (size_t i = 0; i < (set)->size; i++)
/*
* iterate over set from back (backwards)
*
* NOTE: `_reserved_for_set_iteration_zzaw2_df_` is reserved, named randomly to avoid namespace crash
*/
#define foreach_set_bw(i, set) \
for (size_t _reserved_for_set_iteration_zzaw2_df_ = 0, i = (set)->size-1; \
_reserved_for_set_iteration_zzaw2_df_ < (set)->size; \
_reserved_for_set_iteration_zzaw2_df_++, i--)
bool parse_uintset(const char *, struct set *, size_t);
#endif /* SETS_H */