#ifndef _CHANNEL_H_ #define _CHANNEL_H_ #include "regexset.h" struct channel_file_t { char *path; struct regexset_t *rs; }; struct channel_t { char *name; int file_count; struct channel_file_t *files; }; void channel_init(); struct channel_t *channel_add(const char *name); int channel_set_file_count(struct channel_t *channel, int count); int channel_set_file(struct channel_t *channel, int index, const char *path, int rs_index); void channel_free(); #endif