first commit
[synclust.git] / src / sources / utils / boolean.h
CommitLineData
15d1825d
BA
1#ifndef SYNCLUST_BOOLEAN_H
2#define SYNCLUST_BOOLEAN_H
3
4// boolean type (prefix because of conflict with R booleans)
5typedef enum {
6 S_FALSE=0,
7 S_TRUE=1
8} bool;
9
10#endif