Merge branch 'master' of git.dolda2000.com:/srv/git/r/ashd
[ashd.git] / lib / mtio.h
... / ...
CommitLineData
1#ifndef _LIB_MTIO_H
2#define _LIB_MTIO_H
3
4#include <stdio.h>
5
6#define EV_READ 1
7#define EV_WRITE 2
8
9int block(int fd, int ev, time_t to);
10void ioloop(void);
11FILE *mtstdopen(int fd, int issock, int timeout, char *mode);
12
13#endif