C: Changed obibool definitions because of conflict with R

This commit is contained in:
Celine Mercier
2020-01-06 15:11:31 +01:00
parent b1f3e082f9
commit b9cd9bee9a
2 changed files with 10 additions and 10 deletions

View File

@ -34,8 +34,8 @@
* @brief enum for the boolean OBIType.
*/
typedef enum OBIBool {
FALSE = 0,
TRUE = 1,
OBIFalse = 0,
OBITrue = 1,
OBIBool_NA = 2
} obibool_t, *obibool_p; /**< a boolean true/false value */ // TODO check name convention?