mirror of
https://github.com/javalsai/lidm.git
synced 2025-07-03 06:15:03 +02:00
17 lines
190 B
C
17 lines
190 B
C
#ifndef USERSH_
|
|
#define USERSH_
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include "util.h"
|
|
|
|
struct user {
|
|
char* shell;
|
|
char* username;
|
|
char* display_name;
|
|
};
|
|
|
|
struct Vector get_human_users();
|
|
|
|
#endif
|