dotfiles/sbcl/.quicklisp/dists/quicklisp/software/croatoan-20191227-git/ncurses/keybound.lisp
2020-02-18 14:21:14 -05:00

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))