1 #ifndef CSV_H 2 #define CSV_H 3 4 struct CSV_Date 5 { 6 int day; 7 int month; 8 int year; 9 }; 10 11 void csv_setopt(int sem); 12 void csv_separator(const char *s, const char **end); 13 char *csv_string(const char *s, const char **end); 14 double csv_double(const char *s, const char **end); 15 long csv_long(const char *s, const char **end); 16 17 #endif