#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.
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);
This subroutine is part of Base Operating System (BOS) Runtime.
Curses Overview for Programming, List of Curses Subroutines, Understanding Terminals with Curses in AIX Version 4.3 General Programming Concepts: Writing and Debugging Programs.