|
||||
File indexing completed on 2025-01-18 10:02:14
0001 /**************************************************************************** 0002 * Copyright 2020 Thomas E. Dickey * 0003 * Copyright 1998-2001,2009 Free Software Foundation, Inc. * 0004 * * 0005 * Permission is hereby granted, free of charge, to any person obtaining a * 0006 * copy of this software and associated documentation files (the * 0007 * "Software"), to deal in the Software without restriction, including * 0008 * without limitation the rights to use, copy, modify, merge, publish, * 0009 * distribute, distribute with modifications, sublicense, and/or sell * 0010 * copies of the Software, and to permit persons to whom the Software is * 0011 * furnished to do so, subject to the following conditions: * 0012 * * 0013 * The above copyright notice and this permission notice shall be included * 0014 * in all copies or substantial portions of the Software. * 0015 * * 0016 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * 0017 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * 0018 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * 0019 * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * 0020 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * 0021 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * 0022 * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * 0023 * * 0024 * Except as contained in this notice, the name(s) of the above copyright * 0025 * holders shall not be used in advertising or otherwise to promote the * 0026 * sale, use or other dealings in this Software without prior written * 0027 * authorization. * 0028 ****************************************************************************/ 0029 0030 /**************************************************************************** 0031 * Author: Zeyd M. Ben-Halim <zmbenhal@netcom.com> 1992,1995 * 0032 * and: Eric S. Raymond <esr@snark.thyrsus.com> * 0033 ****************************************************************************/ 0034 0035 /* 0036 * unctrl.h 0037 * 0038 * Display a printable version of a control character. 0039 * Control characters are displayed in caret notation (^x), DELETE is displayed 0040 * as ^?. Printable characters are displayed as is. 0041 */ 0042 0043 /* $Id: unctrl.h.in,v 1.12 2020/02/02 23:34:34 tom Exp $ */ 0044 0045 #ifndef NCURSES_UNCTRL_H_incl 0046 #define NCURSES_UNCTRL_H_incl 1 0047 0048 #undef NCURSES_VERSION 0049 #define NCURSES_VERSION "6.5" 0050 0051 #ifdef __cplusplus 0052 extern "C" { 0053 #endif 0054 0055 #include <ncursesw/curses.h> 0056 0057 #undef unctrl 0058 NCURSES_EXPORT(NCURSES_CONST char *) unctrl (chtype); 0059 0060 #if 1 0061 NCURSES_EXPORT(NCURSES_CONST char *) NCURSES_SP_NAME(unctrl) (SCREEN*, chtype); 0062 #endif 0063 0064 #ifdef __cplusplus 0065 } 0066 #endif 0067 0068 #endif /* NCURSES_UNCTRL_H_incl */
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |