Rev 1533 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1533 | Rev 1653 | ||
|---|---|---|---|
| Line 33... | Line 33... | ||
| 33 | * SUCH DAMAGE. |
33 | * SUCH DAMAGE. |
| 34 | * |
34 | * |
| 35 | * @(#)input.c 8.1 (Berkeley) 5/31/93 |
35 | * @(#)input.c 8.1 (Berkeley) 5/31/93 |
| 36 | */ |
36 | */ |
| 37 | 37 | ||
| - | 38 | /** @addtogroup tetris |
|
| - | 39 | * @{ |
|
| - | 40 | */ |
|
| - | 41 | /** @file |
|
| - | 42 | */ |
|
| - | 43 | ||
| 38 | /* |
44 | /* |
| 39 | * Tetris input. |
45 | * Tetris input. |
| 40 | */ |
46 | */ |
| 41 | 47 | ||
| 42 | #include <sys/types.h> |
48 | #include <sys/types.h> |
| Line 174... | Line 180... | ||
| 174 | return (-1); |
180 | return (-1); |
| 175 | c = lastchar; |
181 | c = lastchar; |
| 176 | lastchar = '\0'; |
182 | lastchar = '\0'; |
| 177 | return ((int)(unsigned char)c); |
183 | return ((int)(unsigned char)c); |
| 178 | } |
184 | } |
| - | 185 | ||
| - | 186 | /** @} |
|
| - | 187 | */ |
|
| - | 188 | ||