Rev 1631 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 1631 | Rev 1653 | ||
---|---|---|---|
Line 33... | Line 33... | ||
33 | * SUCH DAMAGE. |
33 | * SUCH DAMAGE. |
34 | * |
34 | * |
35 | * @(#)screen.c 8.1 (Berkeley) 5/31/93 |
35 | * @(#)screen.c 8.1 (Berkeley) 5/31/93 |
36 | */ |
36 | */ |
37 | 37 | ||
- | 38 | /** @addtogroup tetris |
|
- | 39 | * @{ |
|
- | 40 | */ |
|
- | 41 | /** @file |
|
- | 42 | */ |
|
- | 43 | ||
38 | /* |
44 | /* |
39 | * Tetris screen control. |
45 | * Tetris screen control. |
40 | */ |
46 | */ |
41 | 47 | ||
42 | #include <err.h> |
48 | #include <err.h> |
Line 314... | Line 320... | ||
314 | putstr(s); |
320 | putstr(s); |
315 | else |
321 | else |
316 | while (--l >= 0) |
322 | while (--l >= 0) |
317 | (void) putchar(' '); |
323 | (void) putchar(' '); |
318 | } |
324 | } |
- | 325 | ||
- | 326 | /** @} |
|
- | 327 | */ |
|
- | 328 |