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 USERNAME_H 15 #define USERNAME_H 16 17 int enter_user(int uid, char *name, int wecare); 18 int get_user(int uid); 19 void init_hash(void); 20 char *username(int uid); 21 int userid(char *username); 22 23 #endif /* USERNAME_H */ 24