kaem_globals.c 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. /* Copyright (C) 2016-2020 Jeremiah Orians
  2. * Copyright (C) 2020 fosslinux
  3. * This file is part of mescc-tools.
  4. *
  5. * mescc-tools is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 3 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * mescc-tools is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with mescc-tools. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include "kaem.h"
  19. int command_done;
  20. int VERBOSE;
  21. int VERBOSE_EXIT;
  22. int STRICT;
  23. int INIT_MODE;
  24. int FUZZING;
  25. int WARNINGS;
  26. char* KAEM_BINARY;
  27. char* PATH;
  28. /* Token linked-list; stores the tokens of each line */
  29. struct Token* token;
  30. /* Env linked-list; stores the environment variables */
  31. struct Token* env;
  32. /* Alias linked-list; stores the aliases */
  33. struct Token* alias;