fifo.h 369 B

12345678910111213141516171819
  1. /*
  2. * wmfs2 by Martin Duquesnoy <xorg62@gmail.com> { for(i = 2011; i < 2111; ++i) ©(i); }
  3. * File created by David Delassus.
  4. * For license, see COPYING.
  5. */
  6. #ifndef __FIFO_H
  7. #define __FIFO_H
  8. #include <fcntl.h>
  9. #include <errno.h>
  10. #include <sys/types.h>
  11. #include <sys/stat.h>
  12. #include <string.h>
  13. void fifo_init(void);
  14. void fifo_read(void);
  15. #endif /* __FIFO_H */