mirror of
https://github.com/javalsai/lidm.git
synced 2025-08-30 18:08:00 +02:00
format: satisfy linter
This commit is contained in:
@@ -6,6 +6,7 @@
|
||||
#include "config.h"
|
||||
#include "sessions.h"
|
||||
|
||||
bool launch(char *user, char *passwd, struct session session, void (*cb)(void), struct behavior* behavior);
|
||||
bool launch(char *user, char *passwd, struct session session, void (*cb)(void),
|
||||
struct behavior *behavior);
|
||||
|
||||
#endif
|
||||
|
@@ -5,7 +5,7 @@
|
||||
#include "util.h"
|
||||
|
||||
void setup(struct config);
|
||||
int load(struct Vector * users, struct Vector * sessions);
|
||||
int load(struct Vector *users, struct Vector *sessions);
|
||||
void print_err(const char *);
|
||||
void print_errno(const char *);
|
||||
|
||||
|
@@ -14,18 +14,18 @@ void read_press(u_char *, char *);
|
||||
void strcln(char **dest, const char *source);
|
||||
|
||||
struct Vector {
|
||||
uint32_t length;
|
||||
uint32_t alloc_len;
|
||||
uint16_t alloc_size;
|
||||
void** pages;
|
||||
uint32_t length;
|
||||
uint32_t alloc_len;
|
||||
uint16_t alloc_size;
|
||||
void **pages;
|
||||
};
|
||||
|
||||
struct Vector vec_new();
|
||||
int vec_push(struct Vector*, void* item);
|
||||
void vec_free(struct Vector*);
|
||||
void vec_clear(struct Vector*);
|
||||
void vec_reset(struct Vector*);
|
||||
void* vec_pop(struct Vector*); // won't free it, nor shrink vec list space
|
||||
void* vec_get(struct Vector*, size_t index);
|
||||
int vec_push(struct Vector *, void *item);
|
||||
void vec_free(struct Vector *);
|
||||
void vec_clear(struct Vector *);
|
||||
void vec_reset(struct Vector *);
|
||||
void *vec_pop(struct Vector *); // won't free it, nor shrink vec list space
|
||||
void *vec_get(struct Vector *, size_t index);
|
||||
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user