Mercurial > hg > octave-lyh
comparison src/toplev.h @ 1572:0d9e10d10bd7
[project @ 1995-10-19 04:31:30 by jwe]
author | jwe |
---|---|
date | Thu, 19 Oct 1995 04:31:30 +0000 |
parents | 14d8c0a838c1 |
children | 583476712438 |
comparison
equal
deleted
inserted
replaced
1571:6ddabf91bc4e | 1572:0d9e10d10bd7 |
---|---|
27 #include <cstdio> | 27 #include <cstdio> |
28 | 28 |
29 class tree_constant; | 29 class tree_constant; |
30 class tree_function; | 30 class tree_function; |
31 class tree_statement_list; | 31 class tree_statement_list; |
32 class Octave_str_obj; | 32 class charMatrix; |
33 | 33 |
34 extern void clean_up_and_exit (int) NORETURN; | 34 extern void clean_up_and_exit (int) NORETURN; |
35 | 35 |
36 extern void parse_and_execute (FILE *f, int print = 0); | 36 extern void parse_and_execute (FILE *f, int print = 0); |
37 extern void parse_and_execute (char *s, int print = 0, int verbose = 0); | 37 extern void parse_and_execute (char *s, int print = 0, int verbose = 0); |
86 | 86 |
87 // Nonzero means input is coming from startup file. | 87 // Nonzero means input is coming from startup file. |
88 extern int input_from_startup_file; | 88 extern int input_from_startup_file; |
89 | 89 |
90 // The command-line options. | 90 // The command-line options. |
91 extern Octave_str_obj octave_argv; | 91 extern charMatrix octave_argv; |
92 | 92 |
93 // Nonzero means that input is coming from a file that was named on | 93 // Nonzero means that input is coming from a file that was named on |
94 // the command line. | 94 // the command line. |
95 extern int input_from_command_line_file; | 95 extern int input_from_command_line_file; |
96 | 96 |