projects
/
synclust.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
add alternative approach from 2013-01
[synclust.git]
/
src
/
sources
/
utils
/
boolean.h
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
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