9511_project01

project 1 for algorithms & programming I (9511) prof. Cardozo
Index Commits Files Refs README
load_country_codes.h (424B)
   1 #ifndef LOAD_COUNTRY_CODES
   2 #define LOAD_COUNTRY_CODES
   3 
   4 #include "main.h"
   5 
   6 
   7 typedef enum {
   8     CODE,
   9     NAME
  10 } part_t;
  11 
  12 status_t clean (char *buffer, size_t size);
  13 //status_t empty_country_codes(char country_codes[COUNTRIES_NUMBER][ARRAYS_LENGTH]); 
  14 status_t empty_country_codes(char **country_codes); 
  15 //status_t load_country_codes(char country_codes[][ARRAYS_LENGTH]);
  16 status_t load_country_codes(char **country_codes);
  17 
  18 #endif