1
|
1 // builtin text function support. -*- C++ -*- |
|
2 /* |
|
3 |
383
|
4 Copyright (C) 1992, 1993, 1994 John W. Eaton |
1
|
5 |
|
6 This file is part of Octave. |
|
7 |
|
8 Octave is free software; you can redistribute it and/or modify it |
|
9 under the terms of the GNU General Public License as published by the |
|
10 Free Software Foundation; either version 2, or (at your option) any |
|
11 later version. |
|
12 |
|
13 Octave is distributed in the hope that it will be useful, but WITHOUT |
|
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
16 for more details. |
|
17 |
|
18 You should have received a copy of the GNU General Public License |
|
19 along with Octave; see the file COPYING. If not, write to the Free |
|
20 Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. |
|
21 |
|
22 */ |
|
23 |
383
|
24 #if !defined (octave_t_builtins_h) |
|
25 #define octave_t_builtins_h 1 |
1
|
26 |
|
27 #include "tree-const.h" |
|
28 |
|
29 struct builtin_text_functions |
|
30 { |
|
31 char *name; |
|
32 int nargin_max; |
|
33 Text_fcn text_fcn; |
|
34 char *help_string; |
|
35 }; |
|
36 |
499
|
37 extern Octave_object builtin_casesen (int argc, char **argv, int nargout); |
|
38 extern Octave_object builtin_cd (int argc, char **argv, int nargout); |
|
39 extern Octave_object builtin_clear (int argc, char **argv, int nargout); |
|
40 extern Octave_object builtin_document (int argc, char **argv, int nargout); |
|
41 extern Octave_object builtin_edit_history (int argc, char **argv, |
482
|
42 int nargout); |
499
|
43 extern Octave_object builtin_format (int argc, char **argv, int nargout); |
|
44 extern Octave_object builtin_help (int argc, char **argv, int nargout); |
|
45 extern Octave_object builtin_history (int argc, char **argv, int nargout); |
|
46 extern Octave_object builtin_hold (int argc, char **argv, int nargout); |
|
47 extern Octave_object builtin_load (int argc, char **argv, int nargout); |
|
48 extern Octave_object builtin_ls (int argc, char **argv, int nargout); |
|
49 extern Octave_object builtin_run_history (int argc, char **argv, int nargout); |
|
50 extern Octave_object builtin_save (int argc, char **argv, int nargout); |
|
51 extern Octave_object builtin_set (int argc, char **argv, int nargout); |
|
52 extern Octave_object builtin_show (int argc, char **argv, int nargout); |
|
53 extern Octave_object builtin_who (int argc, char **argv, int nargout); |
1
|
54 |
|
55 #endif |
|
56 |
|
57 /* |
|
58 ;;; Local Variables: *** |
|
59 ;;; mode: C++ *** |
|
60 ;;; page-delimiter: "^/\\*" *** |
|
61 ;;; End: *** |
|
62 */ |