9511_project03

project 3 for algorithms & programming I (9511) prof. Cardozo
Index Commits Files Refs README LICENSE
include/load.h (493B)
   1 #ifndef LOAD__H
   2 #define LOAD__H
   3 
   4 #include "../include/cla.h"
   5 #include "../include/user.h"
   6 #include "../include/utils.h"
   7 #include "../include/vector.h"
   8 #include "../include/status.h"
   9 
  10 #define STR_MSG_END_PROCSS_EN    "End processing input file"
  11 
  12 #define STR_MSG_END_PROCSS_ES        "Se termino el procesamiento del archivo"
  13 #define STR_MSG_LINES_PROCSSD_ES    "Lineas procesadas:"
  14 #define STR_MSG_USRS_REGISTERD_ES        "Usuarios registrados:"
  15 
  16 
  17 status_t load_users_to_vector(ADT_Vector_t **, cla_t);
  18 
  19 #endif