Edit File by line
/home/barbar84/www/wp-conte.../plugins/sujqvwi/ExeBy/exe_root.../usr/include
File: nc_tparm.h
/****************************************************************************
[0] Fix | Delete
* Copyright (c) 2006-2012,2017 Free Software Foundation, Inc. *
[1] Fix | Delete
* *
[2] Fix | Delete
* Permission is hereby granted, free of charge, to any person obtaining a *
[3] Fix | Delete
* copy of this software and associated documentation files (the *
[4] Fix | Delete
* "Software"), to deal in the Software without restriction, including *
[5] Fix | Delete
* without limitation the rights to use, copy, modify, merge, publish, *
[6] Fix | Delete
* distribute, distribute with modifications, sublicense, and/or sell *
[7] Fix | Delete
* copies of the Software, and to permit persons to whom the Software is *
[8] Fix | Delete
* furnished to do so, subject to the following conditions: *
[9] Fix | Delete
* *
[10] Fix | Delete
* The above copyright notice and this permission notice shall be included *
[11] Fix | Delete
* in all copies or substantial portions of the Software. *
[12] Fix | Delete
* *
[13] Fix | Delete
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS *
[14] Fix | Delete
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF *
[15] Fix | Delete
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. *
[16] Fix | Delete
* IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, *
[17] Fix | Delete
* DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR *
[18] Fix | Delete
* OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR *
[19] Fix | Delete
* THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
[20] Fix | Delete
* *
[21] Fix | Delete
* Except as contained in this notice, the name(s) of the above copyright *
[22] Fix | Delete
* holders shall not be used in advertising or otherwise to promote the *
[23] Fix | Delete
* sale, use or other dealings in this Software without prior written *
[24] Fix | Delete
* authorization. *
[25] Fix | Delete
****************************************************************************/
[26] Fix | Delete
[27] Fix | Delete
/****************************************************************************
[28] Fix | Delete
* Author: Thomas E. Dickey 2006 *
[29] Fix | Delete
****************************************************************************/
[30] Fix | Delete
[31] Fix | Delete
/* $Id: nc_tparm.h,v 1.8 2017/07/22 17:09:46 tom Exp $ */
[32] Fix | Delete
[33] Fix | Delete
#ifndef NC_TPARM_included
[34] Fix | Delete
#define NC_TPARM_included 1
[35] Fix | Delete
[36] Fix | Delete
#include <ncurses_cfg.h>
[37] Fix | Delete
#include <curses.h>
[38] Fix | Delete
[39] Fix | Delete
/*
[40] Fix | Delete
* Cast parameters past the formatting-string for tparm() to match the
[41] Fix | Delete
* assumption of the varargs code.
[42] Fix | Delete
*/
[43] Fix | Delete
#ifndef TPARM_ARG
[44] Fix | Delete
#ifdef NCURSES_TPARM_ARG
[45] Fix | Delete
#define TPARM_ARG NCURSES_TPARM_ARG
[46] Fix | Delete
#else
[47] Fix | Delete
#define TPARM_ARG long
[48] Fix | Delete
#endif
[49] Fix | Delete
#endif /* TPARAM_ARG */
[50] Fix | Delete
[51] Fix | Delete
#define TPARM_N(n) (TPARM_ARG)(n)
[52] Fix | Delete
[53] Fix | Delete
#define TPARM_9(a,b,c,d,e,f,g,h,i,j) tparm(a,TPARM_N(b),TPARM_N(c),TPARM_N(d),TPARM_N(e),TPARM_N(f),TPARM_N(g),TPARM_N(h),TPARM_N(i),TPARM_N(j))
[54] Fix | Delete
[55] Fix | Delete
#if NCURSES_TPARM_VARARGS
[56] Fix | Delete
#define TPARM_8(a,b,c,d,e,f,g,h,i) tparm(a,TPARM_N(b),TPARM_N(c),TPARM_N(d),TPARM_N(e),TPARM_N(f),TPARM_N(g),TPARM_N(h),TPARM_N(i))
[57] Fix | Delete
#define TPARM_7(a,b,c,d,e,f,g,h) tparm(a,TPARM_N(b),TPARM_N(c),TPARM_N(d),TPARM_N(e),TPARM_N(f),TPARM_N(g),TPARM_N(h))
[58] Fix | Delete
#define TPARM_6(a,b,c,d,e,f,g) tparm(a,TPARM_N(b),TPARM_N(c),TPARM_N(d),TPARM_N(e),TPARM_N(f),TPARM_N(g))
[59] Fix | Delete
#define TPARM_5(a,b,c,d,e,f) tparm(a,TPARM_N(b),TPARM_N(c),TPARM_N(d),TPARM_N(e),TPARM_N(f))
[60] Fix | Delete
#define TPARM_4(a,b,c,d,e) tparm(a,TPARM_N(b),TPARM_N(c),TPARM_N(d),TPARM_N(e))
[61] Fix | Delete
#define TPARM_3(a,b,c,d) tparm(a,TPARM_N(b),TPARM_N(c),TPARM_N(d))
[62] Fix | Delete
#define TPARM_2(a,b,c) tparm(a,TPARM_N(b),TPARM_N(c))
[63] Fix | Delete
#define TPARM_1(a,b) tparm(a,TPARM_N(b))
[64] Fix | Delete
#define TPARM_0(a) tparm(a)
[65] Fix | Delete
#else
[66] Fix | Delete
#define TPARM_8(a,b,c,d,e,f,g,h,i) TPARM_9(a,b,c,d,e,f,g,h,i,0)
[67] Fix | Delete
#define TPARM_7(a,b,c,d,e,f,g,h) TPARM_8(a,b,c,d,e,f,g,h,0)
[68] Fix | Delete
#define TPARM_6(a,b,c,d,e,f,g) TPARM_7(a,b,c,d,e,f,g,0)
[69] Fix | Delete
#define TPARM_5(a,b,c,d,e,f) TPARM_6(a,b,c,d,e,f,0)
[70] Fix | Delete
#define TPARM_4(a,b,c,d,e) TPARM_5(a,b,c,d,e,0)
[71] Fix | Delete
#define TPARM_3(a,b,c,d) TPARM_4(a,b,c,d,0)
[72] Fix | Delete
#define TPARM_2(a,b,c) TPARM_3(a,b,c,0)
[73] Fix | Delete
#define TPARM_1(a,b) TPARM_2(a,b,0)
[74] Fix | Delete
#define TPARM_1(a,b) TPARM_2(a,b,0)
[75] Fix | Delete
#define TPARM_0(a) TPARM_1(a,0)
[76] Fix | Delete
#endif
[77] Fix | Delete
[78] Fix | Delete
#endif /* NC_TPARM_included */
[79] Fix | Delete
[80] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function