#ifndef _GET_NEXT_LINE_H_
# define _GET_NEXT_LINE_H_

#define BUF_SIZE (1024)

typedef struct	s_buff
{
  int		size;
  char		*str;
  struct s_buff *next;
}		t_buff;

char		*get_next_line(const int);

#endif /* !_GET_NEXT_LINE_H_ */