// 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 (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: *** */