NetBSD/usr.bin/top/display.h

37 lines
1.1 KiB
C
Raw Normal View History

/* $NetBSD: display.h,v 1.4 2000/10/11 14:46:19 is Exp $ */
1999-02-15 02:54:06 +03:00
/* constants needed for display.c */
/* "type" argument for new_message function */
#define MT_standout 1
#define MT_delayed 2
1999-03-24 14:57:08 +03:00
int display_resize __P((void));
struct statics;
int display_init __P((struct statics *));
void i_loadave __P((int, double *));
void u_loadave __P((int, double *));
void i_timeofday __P((time_t *));
void i_procstates __P((int, int *));
void u_procstates __P((int, int *));
char *cpustates_tag __P((void));
void i_cpustates __P((int *));
void u_cpustates __P((int *));
void z_cpustates __P((void));
void i_memory __P((int *));
void u_memory __P((int *));
void i_message __P((void));
void u_message __P((void));
void i_header __P((char *));
void u_header __P((char *));
void i_process __P((int, char *));
void u_process __P((int, char *));
void u_endscreen __P((int));
void display_header __P((int));
void new_message __P((int, const char *, ...))
__attribute__((__format__(__printf__, 2, 3)));
1999-03-24 14:57:08 +03:00
void clear_message __P((void));
int readline __P((char *, int, int));
char *printable __P((char *));