Subversion Repositories HelenOS

Rev

Rev 3768 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3768 Rev 4488
Line 44... Line 44...
44
/*
44
/*
45
 * putpad() is for padded strings with count=1.
45
 * putpad() is for padded strings with count=1.
46
 */
46
 */
47
#define putpad(s)   tputs(s, 1, put)
47
#define putpad(s)   tputs(s, 1, put)
48
 
48
 
-
 
49
#include <sys/types.h>
49
#include <async.h>
50
#include <async.h>
50
 
51
 
51
typedef struct {
52
typedef struct {
52
    int ws_row;
53
    ipcarg_t ws_row;
53
    int ws_col;
54
    ipcarg_t ws_col;
54
} winsize_t;
55
} winsize_t;
55
 
56
 
56
extern winsize_t winsize;
57
extern winsize_t winsize;
57
 
58
 
58
void moveto(int r, int c);
59
void moveto(int r, int c);