Go to the documentation of this file.
48 #define LIBMBA_API extern
53 #if defined(USE_WCHAR)
54 #define csv_row_parse csv_row_parse_wcs
56 #define csv_row_parse csv_row_parse_str
60 #define CSV_QUOTES 0x02
63 csv_row_parse_str(
const char* src,
size_t sn,
char* buf,
size_t bn,
char* row[],
int rn,
int sep,
int flags);
65 csv_row_parse_wcs(
const wchar_t* src,
size_t sn,
wchar_t* buf,
size_t bn,
wchar_t* row[],
int rn,
int sep,
int flags);
66 LIBMBA_API
int csv_row_fread(FILE* in,
char* buf,
size_t bn,
char* row[],
int numcols,
int sep,
int flags);