projects
/
synclust.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
63ac5d2c12e813123a54bb6f018f162f42debcf1
[synclust.git]
/
src
/
sources
/
utils
/
boolean.h
1
#ifndef SYNCLUST_BOOLEAN_H
2
#define SYNCLUST_BOOLEAN_H
3
4
// boolean type (prefix because of conflict with R booleans)
5
typedef
enum
{
6
S_FALSE
=
0
,
7
S_TRUE
=
1
8
}
bool
;
9
10
#endif