repo.or.cz
/
ssp.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Dodal manjkajoče Leviticus knjige
[ssp.git]
/
src
/
intset.h
blob
ab7d32b03024c911b0e15c83c3b1edc3c4d5ee71
1
#pragma once
2
3
typedef
struct
intset intset
;
4
5
intset
*
intset_new
();
6
7
void
intset_free
(
intset
*
set
);
8
9
void
intset_add
(
intset
*
set
,
int
item
);
10
11
bool
intset_contains
(
intset
*
set
,
int
item
);