nl.h 185 B

123456789101112
  1. #ifndef _nl_h
  2. #define _nl_h
  3. #define NL_FDS_LEN 2
  4. typedef int nl_fds_t;
  5. nl_fds_t * nl_init(void);
  6. void nl_close(nl_fds_t *nl_fds);
  7. int nl_poll(nl_fds_t *nl_fds, int timeout);
  8. #endif