"Fossies" - the Fresh Open Source Software Archive

Member "teapot-2.3.0/csv.h" (6 Feb 2012, 325 Bytes) of package /linux/privat/old/teapot-2.3.0.tar.gz:


As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) C and C++ source code syntax highlighting (style: standard) with prefixed line numbers and code folding option. Alternatively you can here view or download the uninterpreted source code file. For more information about "csv.h" see the Fossies "Dox" file reference documentation.

    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