home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / mitsch75.zip / scheme-7_5_17-src.zip / scheme-7.5.17 / src / microcode / option.h < prev    next >
C/C++ Source or Header  |  1999-01-02  |  2KB  |  71 lines

  1. /* -*-C-*-
  2.  
  3. $Id: option.h,v 1.12 1999/01/02 06:11:34 cph Exp $
  4.  
  5. Copyright (c) 1990-1999 Massachusetts Institute of Technology
  6.  
  7. This program is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2 of the License, or (at
  10. your option) any later version.
  11.  
  12. This program is distributed in the hope that it will be useful, but
  13. WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  15. General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with this program; if not, write to the Free Software
  19. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  20. */
  21.  
  22. #ifndef SCM_OPTION_H
  23. #define SCM_OPTION_H
  24.  
  25. #include "ansidecl.h"
  26.  
  27. extern int option_saved_argc;
  28. extern CONST char ** option_saved_argv;
  29. extern int option_unused_argc;
  30. extern CONST char ** option_unused_argv;
  31.  
  32. /* Boolean options */
  33. extern int option_emacs_subprocess;
  34. extern int option_force_interactive;
  35. extern int option_disable_core_dump;
  36. extern int option_empty_list_eq_false;
  37.  
  38. /* String options */
  39. extern CONST char ** option_library_path;
  40. extern CONST char * option_band_file;
  41. extern CONST char * option_fasl_file;
  42. extern int option_band_specified;
  43. extern CONST char * option_utabmd_file;
  44.  
  45. /* Numeric options */
  46. extern unsigned int option_heap_size;
  47. extern unsigned int option_constant_size;
  48. extern unsigned int option_stack_size;
  49.  
  50. /* Meaningful only to bchscheme */
  51.  
  52. extern CONST char * option_gc_directory;
  53. extern CONST char * option_gc_drone;
  54. extern CONST char * option_gc_file;
  55. extern int option_gc_keep;
  56. extern int option_gc_read_overlap;
  57. extern int option_gc_window_size;
  58. extern int option_gc_write_overlap;
  59. extern long option_gc_start_position;
  60. extern long option_gc_end_position;
  61.  
  62. extern void EXFUN (read_command_line_options, (int argc, CONST char ** argv));
  63.  
  64. extern CONST char * EXFUN (search_for_library_file, (CONST char *));
  65.  
  66. extern CONST char * EXFUN
  67.   (search_path_for_file,
  68.    (CONST char * option, CONST char * filename, int default_p, int fail_p));
  69.  
  70. #endif /* SCM_OPTION_H */
  71.