Untitled


SUBMITTED BY: Guest

DATE: Nov. 23, 2014, 3:29 p.m.

FORMAT: Text only

SIZE: 272 Bytes

HITS: 872

  1. #ifndef _GET_NEXT_LINE_H_
  2. # define _GET_NEXT_LINE_H_
  3. #define BUF_SIZE (1024)
  4. typedef struct s_buff
  5. {
  6. int size;
  7. char *str;
  8. struct s_buff *next;
  9. } t_buff;
  10. char *get_next_line(const int);
  11. #endif /* !_GET_NEXT_LINE_H_ */

comments powered by Disqus