[C] get_next_line 구현하기 (2) - 구현
·
42Seoul/Get Next Line
Get Next Line #include "get_next_line.h" static int proc_remain(char **line, char **store, char *tmp_ptr) { char *tmp; if (tmp_ptr) { *line = ft_strndup(*store, tmp_ptr - *store); tmp = ft_strndup(tmp_ptr + 1, ft_strlen(tmp_ptr + 1)); free(*store); *store = tmp; return (_SUC_READ); } if (*store) { *line = *store; *store = NULL; } else *line = ft_strndup("", 1); return (_EOF); } int get_next_line..