summaryrefslogtreecommitdiff
path: root/channel.h
blob: 5ad75ea0ee30c8305e673fefd0fcd57542c6647f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef _CHANNEL_H_
#define _CHANNEL_H_

#include "regexset.h"

struct channel_file_t {
	char *path;
	struct regexset_t *rs;
	struct channel_file_t *next;
};

struct channel_t {
	char *name;
	struct channel_file_t *files;
};

void channel_init();
struct channel_t *channel_add(const char *name);
struct channel_file_t *channel_file_add(struct channel_t *channel, const char *path, int rs_index);
void channel_free();

#endif