diff options
Diffstat (limited to 'get_next_line.h')
| -rw-r--r-- | get_next_line.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/get_next_line.h b/get_next_line.h new file mode 100644 index 0000000..6c13f85 --- /dev/null +++ b/get_next_line.h @@ -0,0 +1,18 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* get_next_line.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: dkaiser <dkaiser@student.42heilbronn.de +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2024/03/15 14:14:07 by dkaiser #+# #+# */ +/* Updated: 2024/03/15 14:16:32 by dkaiser ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#ifndef GET_NEXT_LINE_H +# define GET_NEXT_LINE_H +# include <stdlib.h> + +char *get_next_line(int fd); +#endif // GET_NEXT_LINE_H |
