12 lines
270 B
Common Lisp
12 lines
270 B
Common Lisp
(in-package :de.anvi.ncurses)
|
|
|
|
;;; legacy coding
|
|
;;; http://invisible-island.net/ncurses/man/legacy_coding.3x.html
|
|
|
|
;;; C prototypes
|
|
|
|
;; int use_legacy_coding(int level);
|
|
|
|
;;; Low-level CFFI wrappers
|
|
|
|
(defcfun ("use_legacy_coding" %use-legacy-coding) :int (level :int))
|