Goes with 5e0c9f87 (missing ';' and fixed compilation warnings)

This commit is contained in:
Celine Mercier
2016-12-05 11:18:29 +01:00
parent 5e0c9f878b
commit 936be64c34
5 changed files with 34 additions and 34 deletions

View File

@ -197,16 +197,16 @@ size_t obi_get_platform_header_size();
* @since May 2015
* @author Celine Mercier (celine.mercier@metabarcoding.org)
*/
OBIDMS_column_p obi_create_column(OBIDMS_p dms,
const char* column_name,
OBIType_t data_type,
index_t nb_lines,
index_t nb_elements_per_line,
const char* elements_names,
const char* indexer_name,
OBIDMS_column_p obi_create_column(OBIDMS_p dms,
const char* column_name,
OBIType_t data_type,
index_t nb_lines,
index_t nb_elements_per_line,
char* elements_names,
const char* indexer_name,
const char* associated_column_name,
obiversion_t associated_column_version,
const char* comments
const char* comments
);