1delay_output(3XCURSES) X/Open Curses Library Functions delay_output(3XCURSES)
2
3
4
6 delay_output - delays output
7
9 cc [ flag... ] file... -I /usr/xpg4/include -L /usr/xpg4/lib \
10 -R /usr/xpg4/lib -lcurses [ library... ]
11
12 c89 [ flag... ] file... -lcurses [ library... ]
13
14 #include <curses.h>
15
16 int delay_output(int ms);
17
18
20 The delay_output() function delays output for ms milliseconds by
21 inserting pad characters in the output stream.
22
24 ms Is the number of milliseconds to delay the output.
25
26
28 On success, the delay_output() function returns OK. Otherwise, it
29 returns ERR.
30
32 None.
33
35 See attributes(5) for descriptions of the following attributes:
36
37
38
39
40 ┌─────────────────────────────┬─────────────────────────────┐
41 │ ATTRIBUTE TYPE │ ATTRIBUTE VALUE │
42 ├─────────────────────────────┼─────────────────────────────┤
43 │Interface Stability │Standard │
44 ├─────────────────────────────┼─────────────────────────────┤
45 │MT-Level │Unsafe │
46 └─────────────────────────────┴─────────────────────────────┘
47
49 libcurses(3XCURSES), napms(3XCURSES), attributes(5), standards(5)
50
51
52
53SunOS 5.11 5 Jun 2002 delay_output(3XCURSES)