X-Git-Url: http://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=include%2Ftermcap.h.in;h=5c6c07a8e8d055a01117d1bc325e3628f209e401;hp=adae0b7436b6a6cf20896b7632ac92e9e2b3e36d;hb=0eb88fc5281804773e2a0c7a488a4452463535ce;hpb=3a9b6a3bf0269231bef7de74757a910dedd04e0c diff --git a/include/termcap.h.in b/include/termcap.h.in index adae0b74..5c6c07a8 100644 --- a/include/termcap.h.in +++ b/include/termcap.h.in @@ -1,27 +1,40 @@ -/*************************************************************************** -* COPYRIGHT NOTICE * -**************************************************************************** -* ncurses is copyright (C) 1992-1995 * -* Zeyd M. Ben-Halim * -* zmbenhal@netcom.com * -* Eric S. Raymond * -* esr@snark.thyrsus.com * -* * -* Permission is hereby granted to reproduce and distribute ncurses * -* by any means and for any fee, whether alone or as part of a * -* larger distribution, in source or in binary form, PROVIDED * -* this notice is included with any such distribution, and is not * -* removed from any of its header files. Mention of ncurses in any * -* applications linked with it is highly appreciated. * -* * -* ncurses comes AS IS with no warranty, implied or expressed. * -* * -***************************************************************************/ - -/* $Id: termcap.h.in,v 1.4 1997/02/08 21:50:39 tom Exp $ */ - -#ifndef _TERMCAP_H -#define _TERMCAP_H 1 +/**************************************************************************** + * Copyright (c) 1998 Free Software Foundation, Inc. * + * * + * Permission is hereby granted, free of charge, to any person obtaining a * + * copy of this software and associated documentation files (the * + * "Software"), to deal in the Software without restriction, including * + * without limitation the rights to use, copy, modify, merge, publish, * + * distribute, distribute with modifications, sublicense, and/or sell * + * copies of the Software, and to permit persons to whom the Software is * + * furnished to do so, subject to the following conditions: * + * * + * The above copyright notice and this permission notice shall be included * + * in all copies or substantial portions of the Software. * + * * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * + * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * + * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * + * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * + * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * + * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * + * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * + * * + * Except as contained in this notice, the name(s) of the above copyright * + * holders shall not be used in advertising or otherwise to promote the * + * sale, use or other dealings in this Software without prior written * + * authorization. * + ****************************************************************************/ + +/**************************************************************************** + * Author: Zeyd M. Ben-Halim 1992,1995 * + * and: Eric S. Raymond * + ****************************************************************************/ + +/* $Id: termcap.h.in,v 1.10 1999/01/09 22:38:04 Uchiyama.Yasushi Exp $ */ + +#ifndef _NCU_TERMCAP_H +#define _NCU_TERMCAP_H 1 #undef NCURSES_VERSION #define NCURSES_VERSION "@NCURSES_MAJOR@.@NCURSES_MINOR@" @@ -32,23 +45,27 @@ extern "C" #endif /* __cplusplus */ #include +@OSPEED_INCLUDES@ + +#undef NCURSES_CONST +#define NCURSES_CONST @NCURSES_CONST@ extern char PC; extern char *UP; extern char *BC; -extern short ospeed; +extern @OSPEED_TYPE@ ospeed; +#if !defined(_NCU_TERM_H) +extern char *tgetstr(NCURSES_CONST char *, char **); +extern char *tgoto(const char *, int, int); extern int tgetent(char *, const char *); -extern int tgetflag(const char *); -extern int tgetnum(const char *); -extern char *tgetstr(const char *, char **); - +extern int tgetflag(NCURSES_CONST char *); +extern int tgetnum(NCURSES_CONST char *); extern int tputs(const char *, int, int (*)(int)); - -extern char *tgoto(const char *, int, int); +#endif #ifdef __cplusplus } #endif -#endif /* _TERMCAP_H */ +#endif /* _NCU_TERMCAP_H */