mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 01:38:57 +00:00
19 lines
246 B
C
19 lines
246 B
C
#define ESC 27
|
|
#define TAB 9
|
|
|
|
struct field {
|
|
int y;
|
|
int x;
|
|
int width;
|
|
int maxlen;
|
|
int next;
|
|
int up;
|
|
int down;
|
|
int left;
|
|
int right;
|
|
char field[80];
|
|
};
|
|
|
|
int disp_fields(WINDOW *, struct field *, int);
|
|
int change_field(struct field, int);
|