13 lines
296 B
Common Lisp
13 lines
296 B
Common Lisp
(in-package :de.anvi.ncurses)
|
|
|
|
;; keybound
|
|
;; return definition of keycode
|
|
;; http://invisible-island.net/ncurses/man/keybound.3x.html
|
|
|
|
;;; C prototypes
|
|
|
|
;; char *keybound(int keycode, int count);
|
|
|
|
;;; Low-level CFFI wrappers
|
|
|
|
(defcfun ("keybound" %keybound) :string (keycode :int) (count :int))
|