Usage
Assigns a name to a column heading. The caller of the dtw_table_SetN() utility function retains ownership of the memory pointed to by the src parameter. To delete the column heading, assign the column heading value to NULL.
Format
int dtw_table_SetN(void *table, char *src, int col)
Parameters
table | A pointer to the table whose column heading is assigned. |
src | A character string being assigned to the new column heading. |
col | The number of the column. |
Examples
void *myTable; char *myColumnHeading = "newColumnHeading"; rc = dtw_table_SetN(myTable, myColumnHeading, 5);