/usr/include/octave-3.2.4/octave/input.h is in octave3.2-headers 3.2.4-12.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | /*
Copyright (C) 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001,
2002, 2005, 2006, 2007, 2008, 2009 John W. Eaton
This file is part of Octave.
Octave is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3 of the License, or (at your
option) any later version.
Octave is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with Octave; see the file COPYING. If not, see
<http://www.gnu.org/licenses/>.
*/
// Use the GNU readline library for command line editing and hisory.
#if !defined (octave_input_h)
#define octave_input_h 1
#include <cstdio>
#include <string>
#include "oct-time.h"
#include "oct-obj.h"
#include "pager.h"
class octave_value;
extern OCTINTERP_API int octave_read (char *buf, unsigned max_size);
extern OCTINTERP_API FILE *get_input_from_file (const std::string& name, int warn = 1);
extern OCTINTERP_API FILE *get_input_from_stdin (void);
// Global pointer for eval().
extern std::string current_eval_string;
// TRUE means get input from current_eval_string.
extern bool get_input_from_eval_string;
// TRUE means we haven't been asked for the input from
// current_eval_string yet.
extern bool input_from_eval_string_pending;
// TRUE means that input is coming from a file that was named on
// the command line.
extern bool input_from_command_line_file;
// TRUE means we're parsing a function file.
extern bool reading_fcn_file;
// Simple name of function file we are reading.
extern std::string curr_fcn_file_name;
// Full name of file we are reading.
extern std::string curr_fcn_file_full_name;
// TRUE means we're parsing a script file.
extern bool reading_script_file;
// If we are reading from an M-file, this is it.
extern FILE *ff_instream;
// TRUE means this is an interactive shell.
extern bool interactive;
// TRUE means the user forced this shell to be interactive (-i).
extern bool forced_interactive;
// Should we issue a prompt?
extern int promptflag;
// A line of input.
extern std::string current_input_line;
// TRUE after a call to completion_matches.
extern bool octave_completion_matches_called;
// TRUE if the plotting system has requested a call to drawnow at
// the next user prompt.
extern OCTINTERP_API bool Vdrawnow_requested;
// TRUE if we are in debugging mode.
extern OCTINTERP_API bool Vdebugging;
extern std::string gnu_readline (const std::string& s, bool force_readline = false);
extern void initialize_command_input (void);
extern bool octave_yes_or_no (const std::string& prompt);
extern octave_value do_keyboard (const octave_value_list& args = octave_value_list ());
extern std::string VPS4;
extern char Vfilemarker;
enum echo_state
{
ECHO_OFF = 0,
ECHO_SCRIPTS = 1,
ECHO_FUNCTIONS = 2,
ECHO_CMD_LINE = 4
};
extern int Vecho_executing_commands;
extern octave_time Vlast_prompt_time;
#endif
/*
;;; Local Variables: ***
;;; mode: C++ ***
;;; End: ***
*/
|