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

#include <glib.h>
#include <termios.h>

struct cmumble_io {
	GIOChannel *input_channel;

	struct termios term;
};

struct cmumlbe;

int
cmumble_io_init(struct cmumlbe *cm);

int
cmumble_io_fini(struct cmumlbe *cm);

#endif /* _IO_H_ */