stub-termcap.c: prototype tputs's parameter's parameter, for C++ mode
[deliverable/binutils-gdb.git] / gdb / stub-termcap.c
1 /* A very minimal do-nothing termcap emulation stub.
2
3 Copyright (C) 2005-2015 Free Software Foundation, Inc.
4
5 Contributed by CodeSourcery, LLC.
6
7 This file is part of GDB.
8
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21
22
23 #include "defs.h"
24
25 #include <stdlib.h>
26
27 /* -Wmissing-prototypes */
28 extern int tgetent (char *buffer, char *termtype);
29 extern int tgetnum (char *name);
30 extern int tgetflag (char *name);
31 extern char* tgetstr (char *name, char **area);
32 extern int tputs (char *string, int nlines, int (*outfun) (int));
33 extern char *tgoto (const char *cap, int col, int row);
34
35 /* Each of the files below is a minimal implementation of the standard
36 termcap function with the same name, suitable for use in a Windows
37 console window. */
38
39 int
40 tgetent (char *buffer, char *termtype)
41 {
42 return -1;
43 }
44
45 int
46 tgetnum (char *name)
47 {
48 return -1;
49 }
50
51 int
52 tgetflag (char *name)
53 {
54 return -1;
55 }
56
57 char *
58 tgetstr (char *name, char **area)
59 {
60 return NULL;
61 }
62
63 int
64 tputs (char *string, int nlines, int (*outfun) (int))
65 {
66 while (*string)
67 outfun (*string++);
68
69 return 0;
70 }
71
72 char *
73 tgoto (const char *cap, int col, int row)
74 {
75 return NULL;
76 }
This page took 0.036702 seconds and 4 git commands to generate.