The R Project SVN R

Rev

Rev 68949 | Rev 87656 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
11499 ripley 1
/*
2
 *  R : A Computer Language for Statistical Data Analysis
59039 ripley 3
 *  Copyright (C) 2000, 2001 The R Core Team.
11499 ripley 4
 *
71657 plummer 5
 *  This header file is free software; you can redistribute it and/or modify
12778 pd 6
 *  it under the terms of the GNU Lesser General Public License as published by
7
 *  the Free Software Foundation; either version 2.1 of the License, or
11499 ripley 8
 *  (at your option) any later version.
9
 *
71657 plummer 10
 *  This file is part of R. R is distributed under the terms of the
11
 *  GNU General Public License, either Version 2, June 1991 or Version 3,
12
 *  June 2007. See doc/COPYRIGHTS for details of the copyright status of R.
13
 *
11499 ripley 14
 *  This program is distributed in the hope that it will be useful,
15
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12778 pd 17
 *  GNU Lesser General Public License for more details.
11499 ripley 18
 *
12778 pd 19
 *  You should have received a copy of the GNU Lesser General Public License
42308 ripley 20
 *  along with this program; if not, a copy is available at
68949 ripley 21
 *  https://www.R-project.org/Licenses/
11499 ripley 22
 */
23
 
60256 ripley 24
/* Included by R.h: API */
25
 
10589 maechler 26
#ifndef R_EXT_BOOLEAN_H_
27
#define R_EXT_BOOLEAN_H_
28
 
29
#undef FALSE
30
#undef TRUE
11211 ripley 31
 
32
#ifdef  __cplusplus
33
extern "C" {
34
#endif
10589 maechler 35
typedef enum { FALSE = 0, TRUE /*, MAYBE */ } Rboolean;
36
 
11211 ripley 37
#ifdef  __cplusplus
38
}
10590 maechler 39
#endif
11211 ripley 40
 
41
#endif /* R_EXT_BOOLEAN_H_ */