normed the stdme headers

This commit is contained in:
Maieul BOYER 2024-07-11 19:01:59 +02:00
parent 79e039c94a
commit 398dd520d0
No known key found for this signature in database
84 changed files with 297 additions and 2819 deletions

View file

@ -27,16 +27,16 @@
typedef struct s_static_buffer
{
int fd;
bool used;
char buf[BUFFER_SIZE + 1];
bool init;
} t_static_buffer;
bool used;
char buf[BUFFER_SIZE + 1];
bool init;
} t_static_buffer;
typedef struct s_copy_flags
{
bool error;
bool empty_read;
} t_copy_flags;
bool error;
bool empty_read;
} t_copy_flags;
t_string get_next_line(int fd, bool *error);