lidm/include/ui.h
javalsai a0b68491ba
chore: implement vectors
also seems to address several of these:
https://github.com/javalsai/lidm/issues/3#issuecomment-2423933131

not sure about the issue itself, might be permission stuff
2024-10-19 17:50:50 +02:00

13 lines
224 B
C

#ifndef _UIH_
#define _UIH_
#include <config.h>
#include <util.h>
void setup(struct config);
int load(struct Vector * users, struct Vector * sessions);
void print_err(const char *);
void print_errno(const char *);
#endif