dotfiles/sbcl/.quicklisp/dists/quicklisp/software/croatoan-20191227-git/ncurses/move.lisp
2020-02-18 14:21:14 -05:00

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))