blob: 8840776c3c952fe11133c54e5b4e5c3b68803dc9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#ifndef IMV_H
#define IMV_H
#include <stdbool.h>
struct imv;
struct imv *imv_create(void);
void imv_free(struct imv *imv);
bool imv_load_config(struct imv *imv);
bool imv_parse_args(struct imv *imv, int argc, char **argv);
void imv_add_path(struct imv *imv, const char *path);
int imv_run(struct imv *imv);
#endif
/* vim:set ts=2 sts=2 sw=2 et: */
|