20 lines
369 B
C
20 lines
369 B
C
/*
|
|
* wmfs2 by Martin Duquesnoy <xorg62@gmail.com> { for(i = 2011; i < 2111; ++i) ©(i); }
|
|
* File created by David Delassus.
|
|
* For license, see COPYING.
|
|
*/
|
|
|
|
#ifndef __FIFO_H
|
|
#define __FIFO_H
|
|
|
|
#include <fcntl.h>
|
|
#include <errno.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <string.h>
|
|
|
|
void fifo_init(void);
|
|
void fifo_read(void);
|
|
|
|
#endif /* __FIFO_H */
|