9511_project01

project 1 for algorithms & programming I (9511) prof. Cardozo
Index Commits Files Refs README
read_file.h (275B)
   1 #ifndef READLINES_H
   2 #define READLINES_H
   3 
   4 #include "main.h"
   5 #include "load_country_codes.h"
   6 
   7 typedef enum {
   8     PAIS,
   9     DATE,
  10     INFECTED
  11 } data_t;
  12 
  13 status_t read_file(FILE *src, uint *country, uint *date, uint *infected);
  14 
  15 status_t clean_buffer(char *buffer, size_t size);
  16 
  17 #endif