#ifndef _USERSH_ #define _USERSH_ #include struct user { char *shell; char *username; char *display_name; }; struct users_list { u_int16_t length; struct user *users; }; struct users_list *get_human_users(); #endif