16 lines
420 B
Common Lisp
16 lines
420 B
Common Lisp
(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))
|