arguement.h 343 B

123456789101112131415161718
  1. #ifndef VIRTUALMATH_ARGUEMENT_H
  2. #define VIRTUALMATH_ARGUEMENT_H
  3. #include "virtualmath.h"
  4. extern char *HelloString;
  5. struct Args{
  6. char *error_file;
  7. char *out_file;
  8. char *in_file;
  9. bool run_commandLine;
  10. } args;
  11. typedef struct Args Args;
  12. int getArgs(int argc, char **argv);
  13. void freeArgs(void);
  14. #endif //VIRTUALMATH_ARGUEMENT_H