teapot-spreadsheet/src/common/csv.h

20 lines
345 B
C

#ifndef CSV_H
#define CSV_H
#include "scanner.h"
struct CSV_Date
{
int day;
int month;
int year;
};
void csv_setopt(int sem);
void csv_separator(const char *s, const char **end);
char *csv_string(const char *s, const char **end);
FltT csv_double(const char *s, const char **end);
IntT csv_long(const char *s, const char **end);
#endif