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

15 lines
296 B
Common Lisp

(in-package :de.anvi.ncurses)
;;; beep
;;; curses bell and screen flash routines
;;; http://invisible-island.net/ncurses/man/curs_beep.3x.html
;;; C prototypes
;; int beep(void);
;; int flash(void);
;;; Low-level CFFI wrappers
(defcfun ("beep" %beep) :int)
(defcfun ("flash" %flash) :int)