Sets the delay output.
Curses Library (libcurses.a)
#include <curses.h>
int delay_output(int ms);
On terminals that support pad characters, the delay_output subroutine pauses the output for at least ms milliseconds. Otherwise, the length of the delay is unspecified.
Item | Description |
---|---|
ms | Specifies the number of milliseconds to delay output. |
Upon successful completion, the delay_output subroutine returns OK. Otherwise, it returns ERR.
To set the output to delay 250 milliseconds, enter:
delay_output(250);