mirror of
https://github.com/javalsai/lidm.git
synced 2025-07-03 14:25:03 +02:00
spaghetti code equivalent spaghetti readme spaghetti commit (wait no, this is actually descriptive)
20 lines
244 B
C
20 lines
244 B
C
#ifndef _USERSH_
|
|
#define _USERSH_
|
|
|
|
#include <sys/types.h>
|
|
|
|
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
|