Add iterate_over_lwps to gdbserver
[deliverable/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
d053f6be
YZ
27#ifdef __cplusplus
28extern "C" {
29#endif
30
a95babbf
YQ
31/* -Wmissing-prototypes */
32extern int tgetent (char *buffer, char *termtype);
33extern int tgetnum (char *name);
34extern int tgetflag (char *name);
35extern char* tgetstr (char *name, char **area);
b1a921c8 36extern int tputs (char *string, int nlines, int (*outfun) (int));
a95babbf
YQ
37extern char *tgoto (const char *cap, int col, int row);
38
d053f6be
YZ
39#ifdef __cplusplus
40}
41#endif
42
7ef34f2c
MM
43/* Each of the files below is a minimal implementation of the standard
44 termcap function with the same name, suitable for use in a Windows
45 console window. */
46
47int
48tgetent (char *buffer, char *termtype)
49{
50 return -1;
51}
52
53int
54tgetnum (char *name)
55{
56 return -1;
57}
58
59int
60tgetflag (char *name)
61{
62 return -1;
63}
64
65char *
66tgetstr (char *name, char **area)
67{
68 return NULL;
69}
70
71int
b1a921c8 72tputs (char *string, int nlines, int (*outfun) (int))
7ef34f2c
MM
73{
74 while (*string)
75 outfun (*string++);
1e0600be
DJ
76
77 return 0;
7ef34f2c
MM
78}
79
80char *
81tgoto (const char *cap, int col, int row)
82{
83 return NULL;
84}
This page took 1.259829 seconds and 4 git commands to generate.