]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/stub-termcap.c
stub-termcap.c: prototype tputs's parameter's parameter, for C++ mode
[thirdparty/binutils-gdb.git] / gdb / stub-termcap.c
CommitLineData
532f44ed 1/* A very minimal do-nothing termcap emulation stub.
7ef34f2c 2
32d0add0 3 Copyright (C) 2005-2015 Free Software Foundation, Inc.
7ef34f2c
MM
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
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
7ef34f2c
MM
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
a9762ec7 15 but WITHOUT ANY WARRANTY; without even the implied warranty of
7ef34f2c
MM
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
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
7ef34f2c 21
63413d85
EZ
22
23#include "defs.h"
24
7ef34f2c
MM
25#include <stdlib.h>
26
a95babbf
YQ
27/* -Wmissing-prototypes */
28extern int tgetent (char *buffer, char *termtype);
29extern int tgetnum (char *name);
30extern int tgetflag (char *name);
31extern char* tgetstr (char *name, char **area);
b1a921c8 32extern int tputs (char *string, int nlines, int (*outfun) (int));
a95babbf
YQ
33extern char *tgoto (const char *cap, int col, int row);
34
7ef34f2c
MM
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
39int
40tgetent (char *buffer, char *termtype)
41{
42 return -1;
43}
44
45int
46tgetnum (char *name)
47{
48 return -1;
49}
50
51int
52tgetflag (char *name)
53{
54 return -1;
55}
56
57char *
58tgetstr (char *name, char **area)
59{
60 return NULL;
61}
62
63int
b1a921c8 64tputs (char *string, int nlines, int (*outfun) (int))
7ef34f2c
MM
65{
66 while (*string)
67 outfun (*string++);
1e0600be
DJ
68
69 return 0;
7ef34f2c
MM
70}
71
72char *
73tgoto (const char *cap, int col, int row)
74{
75 return NULL;
76}