Mercurial > hg > octave-nkf
view src/t-builtins.h @ 252:bc5e6cb785d1
[project @ 1993-12-06 21:52:57 by jwe]
author | jwe |
---|---|
date | Mon, 06 Dec 1993 21:57:51 +0000 |
parents | a99f28f5e351 |
children | 0b52c68ec81f |
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 #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_run_history (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: *** */