Rev 1590 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1590 | Rev 1653 | ||
|---|---|---|---|
| Line 33... | Line 33... | ||
| 33 | * SUCH DAMAGE. |
33 | * SUCH DAMAGE. |
| 34 | * |
34 | * |
| 35 | * @(#)screen.h 8.1 (Berkeley) 5/31/93 |
35 | * @(#)screen.h 8.1 (Berkeley) 5/31/93 |
| 36 | */ |
36 | */ |
| 37 | 37 | ||
| - | 38 | /** @addtogroup tetris |
|
| - | 39 | * @{ |
|
| - | 40 | */ |
|
| - | 41 | /** @file |
|
| - | 42 | */ |
|
| - | 43 | ||
| 38 | /* |
44 | /* |
| 39 | * putpad() is for padded strings with count=1. |
45 | * putpad() is for padded strings with count=1. |
| 40 | */ |
46 | */ |
| 41 | #define putpad(s) tputs(s, 1, put) |
47 | #define putpad(s) tputs(s, 1, put) |
| 42 | 48 | ||
| Line 57... | Line 63... | ||
| 57 | void scr_end(void); |
63 | void scr_end(void); |
| 58 | void scr_init(void); |
64 | void scr_init(void); |
| 59 | void scr_msg(char *, int); |
65 | void scr_msg(char *, int); |
| 60 | void scr_set(void); |
66 | void scr_set(void); |
| 61 | void scr_update(void); |
67 | void scr_update(void); |
| - | 68 | ||
| - | 69 | /** @} |
|
| - | 70 | */ |
|
| - | 71 | ||