198944Sobrien/* Output generating routines for GDB CLI.
298944Sobrien   Copyright 1999, 2000 Free Software Foundation, Inc.
398944Sobrien   Contributed by Cygnus Solutions.
498944Sobrien
598944Sobrien   This file is part of GDB.
698944Sobrien
798944Sobrien   This program is free software; you can redistribute it and/or modify
898944Sobrien   it under the terms of the GNU General Public License as published by
998944Sobrien   the Free Software Foundation; either version 2 of the License, or
1098944Sobrien   (at your option) any later version.
1198944Sobrien
1298944Sobrien   This program is distributed in the hope that it will be useful,
1398944Sobrien   but WITHOUT ANY WARRANTY; without even the implied warranty of
1498944Sobrien   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1598944Sobrien   GNU General Public License for more details.
1698944Sobrien
1798944Sobrien   You should have received a copy of the GNU General Public License
1898944Sobrien   along with this program; if not, write to the Free Software
1998944Sobrien   Foundation, Inc., 59 Temple Place - Suite 330,
2098944Sobrien   Boston, MA 02111-1307, USA.  */
2198944Sobrien
2298944Sobrien#ifndef CLI_OUT_H
2398944Sobrien#define CLI_OUT_H
2498944Sobrien
25130803Smarcelstruct ui_file;
26130803Smarcel
2798944Sobrienextern struct ui_out *cli_out_new (struct ui_file *stream);
2898944Sobrien
29130803Smarcelextern struct ui_file *cli_out_set_stream (struct ui_out *uiout,
30130803Smarcel					   struct ui_file *stream);
31130803Smarcel
3298944Sobrien#endif
33