summaryrefslogtreecommitdiff
path: root/src/io.h
blob: 638de2e705d2ba8887555b98794727ba61b06c59 (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 cmumble;

int
cmumble_io_init(struct cmumble *cm);

int
cmumble_io_fini(struct cmumble *cm);

#endif /* _IO_H_ */