Tmux etc
This commit is contained in:
parent
276853ba84
commit
1cb167b597
361 changed files with 77302 additions and 4 deletions
|
|
@ -0,0 +1,31 @@
|
|||
(in-package :de.anvi.ncurses)
|
||||
|
||||
;;; termattrs
|
||||
;;; environment query routines
|
||||
;;; http://invisible-island.net/ncurses/man/curs_termattrs.3x.html
|
||||
|
||||
;;; C prototypes
|
||||
|
||||
;; int baudrate(void);
|
||||
;; char erasechar(void);
|
||||
;; int erasewchar(wchar_t *ch);
|
||||
;; bool has_ic(void);
|
||||
;; bool has_il(void);
|
||||
;; char killchar(void);
|
||||
;; int killwchar(wchar_t *ch);
|
||||
;; char *longname(void);
|
||||
;; attr_t term_attrs(void);
|
||||
;; chtype termattrs(void);
|
||||
;; char *termname(void);
|
||||
|
||||
;;; Low-level CFFI wrappers
|
||||
|
||||
(defcfun ("baudrate" %baudrate) :int)
|
||||
(defcfun ("erasechar" %erasechar) :char)
|
||||
(defcfun ("has_ic" %has-ic) :boolean)
|
||||
(defcfun ("has_il" %has-il) :boolean)
|
||||
(defcfun ("killchar" %killchar) :char)
|
||||
(defcfun ("longname" %longname) :string)
|
||||
(defcfun ("term_attrs" %term-attrs) attr)
|
||||
(defcfun ("termattrs" %termattrs) chtype)
|
||||
(defcfun ("termname" %termname) :string)
|
||||
Loading…
Add table
Add a link
Reference in a new issue