/* File "user.h" copyright (c) 2001 by Collin Lally of Polytech Industres. This file is covered under the GNU General Public License and is free to the public. You may modify and/or redistribute this software provided that it remains under the GPL and that the end-product is free to the public.
*/

#define MAX_USERS 5

#define _USER_INCLUDE

struct user_struct{
	int users[MAX_USERS]; /* uid's */
	char u_home_dir[MAX_USERS];
	perm_t u_perm[MAX_USERS]; /* Note: Permission nums range from 1 to 10 (10 being greatest or "root") */
	char u_name[MAX_USERS];
	char *u_passwd[MAX_USERS]; /* Restricted to root and uid */
} *user0, *user1, *user2, *user3, *user4;