Tmux etc
This commit is contained in:
parent
276853ba84
commit
1cb167b597
361 changed files with 77302 additions and 4 deletions
|
|
@ -0,0 +1,19 @@
|
|||
(in-package :de.anvi.ncurses)
|
||||
|
||||
;;; insch
|
||||
;;; insert a character before cursor in a curses window
|
||||
;;; http://invisible-island.net/ncurses/man/curs_insch.3x.html
|
||||
|
||||
;;; C prototypes
|
||||
|
||||
;; int insch(chtype ch);
|
||||
;; int winsch(WINDOW *win, chtype ch);
|
||||
;; int mvinsch(int y, int x, chtype ch);
|
||||
;; int mvwinsch(WINDOW *win, int y, int x, chtype ch);
|
||||
|
||||
;;; Low-level CFFI wrappers
|
||||
|
||||
(defcfun ("insch" %insch) :int (ch chtype))
|
||||
(defcfun ("winsch" %winsch) :int (win window) (ch chtype))
|
||||
(defcfun ("mvinsch" %mvinsch) :int (y :int) (x :int) (ch chtype))
|
||||
(defcfun ("mvwinsch" %mvwinsch) :int (win window) (y :int) (x :int) (ch chtype))
|
||||
Loading…
Add table
Add a link
Reference in a new issue