xref: /freebsd/usr.bin/top/commands.h (revision ecbde90073aef9166e77cecf61bd80c15a707a53)
1 /*
2  *  Top users/processes display for Unix
3  *  Version 3
4  *
5  *  This program may be freely redistributed,
6  *  but this entire comment MUST remain intact.
7  *
8  *  Copyright (c) 1984, 1989, William LeFebvre, Rice University
9  *  Copyright (c) 1989, 1990, 1992, William LeFebvre, Northwestern University
10  *  Copyright (c) 2016, Randy Westlund
11  *
12  * $FreeBSD$
13  */
14 #ifndef COMMANDS_H
15 #define COMMANDS_H
16 
17 void	show_errors(void);
18 int	error_count(void);
19 void	show_help(void);
20 
21 struct command {
22 	char c;
23 	const char * const desc;
24 	bool available_to_dumb;
25 };
26 
27 #endif /* COMMANDS_H */
28