comparison src/input.h @ 3165:e4bbfc196e53

[project @ 1998-04-16 03:01:47 by jwe]
author jwe
date Thu, 16 Apr 1998 03:05:03 +0000
parents 92aa3d651723
children 4d33b1e56bff
comparison
equal deleted inserted replaced
3164:45490c020e47 3165:e4bbfc196e53
24 24
25 #if !defined (octave_input_h) 25 #if !defined (octave_input_h)
26 #define octave_input_h 1 26 #define octave_input_h 1
27 27
28 #include <cstdio> 28 #include <cstdio>
29 #include <ctime>
29 30
30 #include <string> 31 #include <string>
31 32
32 extern int octave_read (char *buf, unsigned max_size); 33 extern int octave_read (char *buf, unsigned max_size);
33 extern FILE *get_input_from_file (const string& name, int warn = 1); 34 extern FILE *get_input_from_file (const string& name, int warn = 1);
83 ECHO_CMD_LINE = 4 84 ECHO_CMD_LINE = 4
84 }; 85 };
85 86
86 extern int Vecho_executing_commands; 87 extern int Vecho_executing_commands;
87 88
89 extern time_t Vlast_prompt_time;
90
88 #endif 91 #endif
89 92
90 /* 93 /*
91 ;;; Local Variables: *** 94 ;;; Local Variables: ***
92 ;;; mode: C++ *** 95 ;;; mode: C++ ***