Go to main content

man pages section 3: Curses Library Functions

Exit Print View

Updated: July 2017
 
 

curs_beep(3CURSES)

Name

curs_beep, beep, flash - curses bell and screen flash routines

Synopsis

cc [ flag ... ] file ... –lcurses [ library ... ]
#include <curses.h>

int beep(void);
int flash(void);

Description

The beep() and flash() routines are used to signal the terminal user. The routine beep() sounds the audible alarm on the terminal, if possible; if that is not possible, it flashes the screen (visible bell), if that is possible. The routine flash() flashes the screen, and if that is not possible, sounds the audible signal. If neither signal is possible, nothing happens. Nearly all terminals have an audible signal (bell or beep), but only some can flash the screen.

Return Values

These routines always return OK.

Attributes

See attributes(5) for descriptions of the following attributes:

ATTRIBUTE TYPE
ATTRIBUTE VALUE
MT-Level
Unsafe

See Also

curses(3CURSES), attributes(5)

Notes

The header <curses.h> automatically includes the headers <stdio.h> and <unctrl.h>.