lidm/include/users.h
2025-06-06 20:46:55 +02:00

17 lines
192 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