Goes with 5e0c9f87
(missing ';' and fixed compilation warnings)
This commit is contained in:
@ -131,7 +131,7 @@ static obiversion_t create_version_file(OBIDMS_column_directory_p column_directo
|
||||
* @since December 2016
|
||||
* @author Celine Mercier (celine.mercier@metabarcoding.org)
|
||||
*/
|
||||
static char* build_default_elements_names(index_t nb_elements_per_line)
|
||||
static char* build_default_elements_names(index_t nb_elements_per_line);
|
||||
|
||||
|
||||
/**
|
||||
@ -147,7 +147,7 @@ static char* build_default_elements_names(index_t nb_elements_per_line)
|
||||
* @since July 2015
|
||||
* @author Celine Mercier (celine.mercier@metabarcoding.org)
|
||||
*/
|
||||
static int obi_column_set_elements_names(OBIDMS_column_p column, const char* elements_names);
|
||||
static int obi_column_set_elements_names(OBIDMS_column_p column, char* elements_names);
|
||||
|
||||
|
||||
/**
|
||||
@ -467,7 +467,7 @@ static char* build_default_elements_names(index_t nb_elements_per_line)
|
||||
}
|
||||
|
||||
|
||||
int obi_column_set_elements_names(OBIDMS_column_p column, const char* elements_names)
|
||||
int obi_column_set_elements_names(OBIDMS_column_p column, char* elements_names)
|
||||
{
|
||||
if (strlen(elements_names) > ELEMENTS_NAMES_MAX)
|
||||
{
|
||||
@ -603,7 +603,7 @@ OBIDMS_column_p obi_create_column(OBIDMS_p dms,
|
||||
OBIType_t data_type,
|
||||
index_t nb_lines,
|
||||
index_t nb_elements_per_line,
|
||||
const char* elements_names,
|
||||
char* elements_names,
|
||||
const char* indexer_name,
|
||||
const char* associated_column_name,
|
||||
obiversion_t associated_column_version,
|
||||
|
Reference in New Issue
Block a user