-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line.h
26 lines (23 loc) · 1.19 KB
/
get_next_line.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ulyildiz <ulyildiz@student.42kocaeli.co +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/31 16:43:42 by ulyildiz #+# #+# */
/* Updated: 2023/11/30 13:52:51 by ulyildiz ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# ifndef BUFFER_SIZE
# define BUFFER_SIZE 45
# endif
# include <stdlib.h>
char *get_next_line(int fd);
char *ft_strjoin(char const *s1, char const *s2);
void *ft_calloc(size_t count, size_t nbyte);
size_t ft_strlen(const char *s);
size_t check_newline(char *str);
#endif