fix a few small things

This commit is contained in:
Khaïs COLIN 2024-10-31 14:22:52 +01:00
parent ff928f6366
commit 9339be5e45
3 changed files with 11 additions and 12 deletions

View file

@ -19,8 +19,8 @@
# ifndef BUFFER_SIZE
# define BUFFER_SIZE 1024
# endif
# if BUFFER_SIZE <= 1
# error BUFFER_SIZE must be at least 2
# if BUFFER_SIZE <= 0
# error BUFFER_SIZE must be at least 1
# endif
char *get_next_line(int fd);