00001 00002 /* 00003 * This file is included by the CSV ".c" files in the csv directory. 00004 */ 00005 00006 #include <stdio.h> 00007 00008 /* Data structures */ 00009 typedef const char * datafile_rows_t; 00010 typedef struct datafile_s { 00011 const char *name; 00012 const datafile_rows_t **rows; 00013 } datafile_t;