Files and functions for OBIDMS columns with the data type OBI_BOOL

This commit is contained in:
celinemercier
2015-08-11 11:00:59 +02:00
parent bc2ca89088
commit eaca9c85f1
10 changed files with 186 additions and 2 deletions

View File

@ -30,6 +30,9 @@ size_t obi_sizeof(OBIType_t type)
case OBI_FLOAT: size = sizeof(obifloat_t);
break;
case OBI_BOOL: size = sizeof(obibool_t);
break;
case OBI_CHAR: size = sizeof(obichar_t);
break;
@ -77,6 +80,9 @@ char* name_data_type(int data_type)
case OBI_FLOAT: name = strdup("OBI_FLOAT");
break;
case OBI_BOOL: name = strdup("OBI_BOOL");
break;
case OBI_CHAR: name = strdup("OBI_CHAR");
break;