X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=ncurses%2Fbase%2Fkeybound.c;h=bbd912a0d858079c2442b8f81bbfa0d9ed7d33e8;hp=06a1f44fc2f8e28a07da041dc8239643ff33be9a;hb=d6c65d287166c3105ece4a5e3f3ec7af5a5f26a3;hpb=a8987e73ec254703634802b4f7ee30d3a485524d diff --git a/ncurses/base/keybound.c b/ncurses/base/keybound.c index 06a1f44f..bbd912a0 100644 --- a/ncurses/base/keybound.c +++ b/ncurses/base/keybound.c @@ -1,5 +1,6 @@ /**************************************************************************** - * Copyright (c) 1999-2000,2003 Free Software Foundation, Inc. * + * Copyright 2020 Thomas E. Dickey * + * Copyright 1999-2009,2011 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 * @@ -27,21 +28,37 @@ ****************************************************************************/ /**************************************************************************** - * Author: Thomas E. Dickey 1999 * + * Author: Thomas E. Dickey 1999-on * + * and: Juergen Pfeifer 2009 * ****************************************************************************/ #include -MODULE_ID("$Id: keybound.c,v 1.4 2003/03/08 19:39:31 tom Exp $") +MODULE_ID("$Id: keybound.c,v 1.12 2020/02/02 23:34:34 tom Exp $") /* * Returns the count'th string definition which is associated with the * given keycode. The result is malloc'd, must be freed by the caller. */ +NCURSES_EXPORT(char *) +NCURSES_SP_NAME(keybound) (NCURSES_SP_DCLx int code, int count) +{ + char *result = 0; + + T((T_CALLED("keybound(%p, %d,%d)"), (void *) SP_PARM, code, count)); + if (SP_PARM != 0 && code >= 0) { + result = _nc_expand_try(SP_PARM->_keytry, + (unsigned) code, + &count, + (size_t) 0); + } + returnPtr(result); +} +#if NCURSES_SP_FUNCS NCURSES_EXPORT(char *) keybound(int code, int count) { - T((T_CALLED("keybound(%d,%d)"), code, count)); - returnPtr(_nc_expand_try(SP->_keytry, code, &count, 0)); + return NCURSES_SP_NAME(keybound) (CURRENT_SCREEN, code, count); } +#endif