9511_project01

project 1 for algorithms & programming I (9511) prof. Cardozo
Index Commits Files Refs README
arguments.h (379B)
   1 #ifndef ARGUMENTS_H
   2 #define ARGUMENTS_H
   3 
   4 #include "main.h"
   5 
   6 #define INPUT_ARGUMENT_FOUND_MSG     "Encontre un '-in'\n"
   7 #define OUTPUT_ARGUMENT_FOUND_MSG     "Encontre un '-out'\n"
   8 
   9 #define INPUT_FILE_NAME_MSG     "\t -> Archivo de entrada: "
  10 #define OUTPUT_FILE_NAME_MSG     "\t -> Archivo de salida: "
  11 
  12 status_t validate_arguments(int argc, char * argv[], char * src, char * dest);
  13 
  14 #endif