Changeset ebe70f1 in mainline for uspace/app/tetris/screen.h


Ignore:
Timestamp:
2009-06-09T11:10:31Z (16 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f3afd24
Parents:
080ad7f
Message:

slightly cleanup the horrible mess of tetris
introduce colors

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/tetris/screen.h

    r080ad7f rebe70f1  
    3737
    3838/** @addtogroup tetris
    39  * @{ 
     39 * @{
    4040 */
    4141/** @file
     
    4343
    4444/*
    45  * putpad() is for padded strings with count=1.
     45 * putpad() is for padded strings with count = 1.
    4646 */
    47 #define putpad(s)       tputs(s, 1, put)
     47#define putpad(s)  tputs(s, 1, put)
    4848
    4949#include <sys/types.h>
     
    5757extern winsize_t winsize;
    5858
    59 void moveto(int r, int c);
    60 void clear_screen(void);
     59extern void moveto(int r, int c);
     60extern void clear_screen(void);
    6161
    62 int     put(int);                       /* just calls putchar; for tputs */
    63 void    scr_clear(void);
    64 void    scr_end(void);
    65 void    scr_init(void);
    66 void    scr_msg(char *, int);
    67 void    scr_set(void);
    68 void    scr_update(void);
     62/* just calls putchar; for tputs */
     63extern int put(int);
     64extern void scr_clear(void);
     65extern void scr_end(void);
     66extern void scr_init(void);
     67extern void scr_msg(char *, int);
     68extern void scr_set(void);
     69extern void scr_update(void);
    6970
    7071/** @}
    7172 */
    72 
Note: See TracChangeset for help on using the changeset viewer.