From c19760c62f25cf69214d0b7326cade5d00bcbde3 Mon Sep 17 00:00:00 2001 From: Pradana AUMARS Date: Fri, 16 Jul 2021 21:34:25 +0200 Subject: [PATCH] Fixed easycsv_find_num_value documentation Signed-off-by: Pradana AUMARS --- include/easycsv.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/easycsv.h b/include/easycsv.h index 958f02c..1252465 100644 --- a/include/easycsv.h +++ b/include/easycsv.h @@ -129,11 +129,11 @@ easycsv_find_value(const easycsv*, * Find number of instances of value * @param[in] constant pointer to easycsv structure * @param[in] value to find - * @return number of instances + * @return positive integer if success, -1 if error */ int easycsv_find_num_value(const easycsv*, - const char*); + const char*); /*** Access, read ***/