Fix easycsv_find_value documentation

Signed-off-by: Pradana AUMARS <paumars@courrier.dev>
This commit is contained in:
Pradana AUMARS 2021-07-16 21:30:53 +02:00
parent 3178e0eccf
commit 61618b72bc
1 changed files with 6 additions and 6 deletions

View File

@ -115,15 +115,15 @@ easycsv_get_error();
* Find value and returns row and column * Find value and returns row and column
* @param[in] constant pointer to easycsv structure * @param[in] constant pointer to easycsv structure
* @param[in] value to find * @param[in] value to find
* @param[out] row number * @param[out] pointer to column number, unchanged if error
* @param[out] column number * @param[out] pointer to row number, unchanged if error
* @return easycsv error code * @return 0 if success, -1 if error
*/ */
int int
easycsv_find_value(const easycsv*, easycsv_find_value(const easycsv*,
const char*, const char*,
unsigned int*, unsigned int*,
unsigned int*); unsigned int*);
/** /**
* Find number of instances of value * Find number of instances of value