mirror of
https://gitlab.com/zephray/glider.git
synced 2025-01-08 21:23:58 +00:00
13 lines
338 B
C
13 lines
338 B
C
|
#ifndef CSV_DOT_H_INCLUDE_GUARD
|
||
|
#define CSV_DOT_H_INCLUDE_GUARD
|
||
|
|
||
|
#define CSV_ERR_LONGLINE 0
|
||
|
#define CSV_ERR_NO_MEMORY 1
|
||
|
|
||
|
char **parse_csv( const char *line );
|
||
|
void free_csv_line( char **parsed );
|
||
|
char **split_on_unescaped_newlines(const char *txt);
|
||
|
char *fread_csv_line(FILE *fp, int max_line_size, int *done, int *err, int rst);
|
||
|
|
||
|
#endif
|