kaem_globals.h 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  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. extern int command_done;
  19. extern int VERBOSE;
  20. extern int VERBOSE_EXIT;
  21. extern int STRICT;
  22. extern int INIT_MODE;
  23. extern int FUZZING;
  24. extern int WARNINGS;
  25. extern char* KAEM_BINARY;
  26. extern char* PATH;
  27. /* Token linked-list; stores the tokens of each line */
  28. extern struct Token* token;
  29. /* Env linked-list; stores the environment variables */
  30. extern struct Token* env;
  31. /* Alias linked-list; stores the aliases */
  32. extern struct Token* alias;