Mercurial > hg > octave-avbm
comparison src/input.h @ 2927:8722c6284b72
[project @ 1997-05-05 03:44:04 by jwe]
author | jwe |
---|---|
date | Mon, 05 May 1997 03:44:12 +0000 |
parents | 8bb31a2b480b |
children | 92aa3d651723 |
comparison
equal
deleted
inserted
replaced
2926:66ef74ee5d9f | 2927:8722c6284b72 |
---|---|
30 #include <string> | 30 #include <string> |
31 | 31 |
32 extern int octave_read (char *buf, unsigned max_size); | 32 extern int octave_read (char *buf, unsigned max_size); |
33 extern FILE *get_input_from_file (const string& name, int warn = 1); | 33 extern FILE *get_input_from_file (const string& name, int warn = 1); |
34 extern FILE *get_input_from_stdin (void); | 34 extern FILE *get_input_from_stdin (void); |
35 extern void initialize_readline (void); | |
36 | 35 |
37 // Global pointer for eval(). | 36 // Global pointer for eval(). |
38 extern string current_eval_string; | 37 extern string current_eval_string; |
39 | 38 |
40 // Nonzero means get input from current_eval_string. | 39 // Nonzero means get input from current_eval_string. |
68 extern string current_input_line; | 67 extern string current_input_line; |
69 | 68 |
70 // TRUE after a call to completion_matches(). | 69 // TRUE after a call to completion_matches(). |
71 extern bool octave_completion_matches_called; | 70 extern bool octave_completion_matches_called; |
72 | 71 |
73 char *gnu_readline (const char *s, bool force_readline = false); | 72 extern string gnu_readline (const string& s, bool force_readline = false); |
73 | |
74 extern void initialize_command_input (void); | |
74 | 75 |
75 extern string Vps4; | 76 extern string Vps4; |
76 | 77 |
77 #endif | 78 #endif |
78 | 79 |