Added missing header comments.
This commit is contained in:
@ -208,6 +208,7 @@ bool _csvRowSearchCallback(
|
||||
data->rowIndex = row;
|
||||
return false;
|
||||
}
|
||||
|
||||
int32_t csvRowSearch(
|
||||
assetbuffer_t *asset, csvrow_t *row, int32_t column, char *value
|
||||
) {
|
||||
|
@ -67,7 +67,6 @@ csvbufferresult_t csvBufferRowWithHeaders(
|
||||
*/
|
||||
void csvRowPopulate(csvrow_t *source, csvrow_t *dest);
|
||||
|
||||
|
||||
/** Callback used to parse and get the headers row */
|
||||
bool _csvHeadersGetCallback(
|
||||
assetbuffer_t *asset, void *user, int32_t row, csvrow_t *current
|
||||
@ -82,7 +81,6 @@ bool _csvHeadersGetCallback(
|
||||
*/
|
||||
csvbufferresult_t csvHeadersGet(assetbuffer_t *asset, csvrow_t *row);
|
||||
|
||||
|
||||
/**
|
||||
* Gets the column index within the CSV Row for the specific key.
|
||||
* @param row Row to get from.
|
||||
@ -95,6 +93,7 @@ int32_t csvColumnGetIndex(csvrow_t *row, char *key);
|
||||
bool _csvRowSearchCallback(
|
||||
assetbuffer_t *asset, void *user, int32_t row, csvrow_t *csv
|
||||
);
|
||||
|
||||
/**
|
||||
* Search the CSV for a matching row. Will return data only if the given column
|
||||
* matches the given value.
|
||||
|
Reference in New Issue
Block a user