Tmux etc
This commit is contained in:
parent
276853ba84
commit
1cb167b597
361 changed files with 77302 additions and 4 deletions
|
|
@ -0,0 +1,16 @@
|
|||
(in-package :de.anvi.ncurses)
|
||||
|
||||
;;; move
|
||||
;;; move curses window cursor
|
||||
;;; http://invisible-island.net/ncurses/man/curs_move.3x.html
|
||||
;;; http://www.manpagez.com/man/3/curs_move/
|
||||
|
||||
;;; C prototypes
|
||||
|
||||
;; int move(int y, int x);
|
||||
;; int wmove(WINDOW *win, int y, int x);
|
||||
|
||||
;;; Low-level CFFI wrappers
|
||||
|
||||
(defcfun ("move" %move) :int (y :int) (x :int))
|
||||
(defcfun ("wmove" %wmove) :int (win window) (y :int) (x :int))
|
||||
Loading…
Add table
Add a link
Reference in a new issue