Fix the manual more thoroughly.
[deliverable/binutils-gdb.git] / gdb / ui-file.h
index bb857134779c127791fb705bb968f6336a94a74b..ba0a9083e0205f61ddcaa9a43bebf54284895571 100644 (file)
@@ -1,5 +1,5 @@
 /* UI_FILE - a generic STDIO like output stream.
-   Copyright (C) 1999-2000, 2007-2012 Free Software Foundation, Inc.
+   Copyright (C) 1999-2013 Free Software Foundation, Inc.
 
    This file is part of GDB.
 
@@ -129,14 +129,18 @@ extern struct ui_file *mem_fileopen (void);
 /* Open/create a STDIO based UI_FILE using the already open FILE.  */
 extern struct ui_file *stdio_fileopen (FILE *file);
 
+/* Create a ui_file from stderr.  */
+extern struct ui_file *stderr_fileopen (void);
+
+
 /* Open NAME returning an STDIO based UI_FILE.  */
-extern struct ui_file *gdb_fopen (char *name, char *mode);
+extern struct ui_file *gdb_fopen (const char *name, const char *mode);
 
 /* Create a file which writes to both ONE and TWO.  CLOSE_ONE
    and CLOSE_TWO indicate whether the original files should be
    closed when the new file is closed.  */
-struct ui_file *tee_file_new (struct ui_file *one,
-                             int close_one,
-                             struct ui_file *two,
-                             int close_two);
+extern struct ui_file *tee_file_new (struct ui_file *one,
+                                    int close_one,
+                                    struct ui_file *two,
+                                    int close_two);
 #endif
This page took 0.025654 seconds and 4 git commands to generate.