Mercurial > hg > octave-lyh
view src/t-builtins.h @ 27:c63068b25a63
[project @ 1993-08-10 21:05:36 by jwe]
(defaults.h) Quote substitutions.
author | jwe |
---|---|
date | Tue, 10 Aug 1993 21:05:36 +0000 |
parents | 78fd87e624cb |
children | 91ab99b0dbae |
line wrap: on
line source
// builtin text function support. -*- C++ -*- /* Copyright (C) 1992, 1993 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 2, 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, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #if !defined (_t_builtins_h) #define _t_builtins_h 1 #ifdef __GNUG__ #pragma interface #endif #include "tree-const.h" struct builtin_text_functions { char *name; int nargin_max; Text_fcn text_fcn; char *help_string; }; extern tree_constant builtin_casesen (int, char **); extern tree_constant builtin_cd (int, char **); extern tree_constant builtin_clear (int, char **); extern tree_constant builtin_document (int, char **); extern tree_constant builtin_edit_history (int, char **); extern tree_constant builtin_format (int, char **); extern tree_constant builtin_help (int, char **); extern tree_constant builtin_history (int, char **); extern tree_constant builtin_load (int, char **); extern tree_constant builtin_ls (int, char **); extern tree_constant builtin_save (int, char **); extern tree_constant builtin_set (int, char **); extern tree_constant builtin_show (int, char **); extern tree_constant builtin_who (int, char **); #endif /* ;;; Local Variables: *** ;;; mode: C++ *** ;;; page-delimiter: "^/\\*" *** ;;; End: *** */