comparison mcabber/src/fifo.h @ 1426:a64778f5f26b

Implement FIFO named command pipe
author Mikael Berthe <mikael@lilotux.net>
date Mon, 18 Feb 2008 22:59:37 +0100
parents
children fca9a4c17432
comparison
equal deleted inserted replaced
1425:b0cfd9ab4b9f 1426:a64778f5f26b
1 #ifndef __FIFO_H__
2 #define __FIFO_H__ 1
3
4 int fifo_init(const char *fifo_path);
5 void fifo_deinit(void);
6 void fifo_read(void);
7 int fifo_get_fd(void);
8
9 #endif /* __FIFO_H__ */
10
11 /* vim: set expandtab cindent cinoptions=>2\:2(0: For Vim users... */