2016-09-11 09:42:19 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-11 09:42:19 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INDUCT_H
|
|
|
|
#define _INDUCT_H
|
|
|
|
|
2016-09-14 13:08:22 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2016-09-22 15:06:53 +00:00
|
|
|
static const char INDUCT_DIR[] = "induct";
|
2016-09-14 13:08:22 +00:00
|
|
|
|
2016-09-29 21:49:33 +00:00
|
|
|
int induct_ctx_init (induct_ctx_t *induct_ctx, const user_options_t *user_options, const folder_config_t *folder_config, const status_ctx_t *status_ctx);
|
2016-09-22 15:06:53 +00:00
|
|
|
void induct_ctx_scan (induct_ctx_t *induct_ctx);
|
|
|
|
void induct_ctx_cleanup (induct_ctx_t *induct_ctx);
|
|
|
|
void induct_ctx_destroy (induct_ctx_t *induct_ctx);
|
2016-09-14 13:08:22 +00:00
|
|
|
|
2016-09-11 09:42:19 +00:00
|
|
|
#endif // _INDUCT_H
|