blob: 0a3889c10d7db30b035fa978a49712a303759014 [file] [log] [blame]
Jari Aalto726f6381996-08-26 18:22:31 +00001/* dispose_cmd.h -- Functions appearing in dispose_cmd.c. */
2
Jari Aalto31859422009-01-12 13:36:28 +00003/* Copyright (C) 1993-2009 Free Software Foundation, Inc.
Jari Aalto726f6381996-08-26 18:22:31 +00004
5 This file is part of GNU Bash, the Bourne Again SHell.
6
Jari Aalto31859422009-01-12 13:36:28 +00007 Bash is free software: you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation, either version 3 of the License, or
10 (at your option) any later version.
Jari Aalto726f6381996-08-26 18:22:31 +000011
Jari Aalto31859422009-01-12 13:36:28 +000012 Bash is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
Jari Aalto726f6381996-08-26 18:22:31 +000016
Jari Aalto31859422009-01-12 13:36:28 +000017 You should have received a copy of the GNU General Public License
18 along with Bash. If not, see <http://www.gnu.org/licenses/>.
19*/
Jari Aalto726f6381996-08-26 18:22:31 +000020
21#if !defined (_DISPOSE_CMD_H_)
22#define _DISPOSE_CMD_H_
23
24#include "stdc.h"
25
26extern void dispose_command __P((COMMAND *));
Jari Aalto95732b42005-12-07 14:08:12 +000027extern void dispose_word_desc __P((WORD_DESC *));
Jari Aalto726f6381996-08-26 18:22:31 +000028extern void dispose_word __P((WORD_DESC *));
29extern void dispose_words __P((WORD_LIST *));
30extern void dispose_word_array __P((char **));
31extern void dispose_redirects __P((REDIRECT *));
32
Jari Aaltocce855b1998-04-17 19:52:44 +000033#if defined (COND_COMMAND)
34extern void dispose_cond_node __P((COND_COM *));
35#endif
36
Jari Aaltob80f6442004-07-27 13:29:18 +000037extern void dispose_function_def_contents __P((FUNCTION_DEF *));
38extern void dispose_function_def __P((FUNCTION_DEF *));
39
Jari Aalto726f6381996-08-26 18:22:31 +000040#endif /* !_DISPOSE_CMD_H_ */