Added missing header comments.

This commit is contained in:
2021-08-29 10:07:42 -07:00
parent 01c26b9e16
commit 64a2dd5773
29 changed files with 184 additions and 73 deletions

View File

@ -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
) {

View File

@ -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.