-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line.h
31 lines (26 loc) · 1.25 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
27
28
29
30
31
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: bsamli <bsamli@student.42istanbul.com.t +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/01 15:50:52 by bsamli #+# #+# */
/* Updated: 2022/11/01 17:58:19 by bsamli ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# ifndef BUFFER_SIZE
# define BUFFER_SIZE 1
# endif
# include <stdlib.h>
# include <unistd.h>
int ft_strlen(char *c);
int ft_find(char *finder);
char *ft_line(char *handle_string);
char *ft_clean(char *handle_string);
char *ft_read(int fd, char *str);
char *get_next_line(int fd);
char *ft_strjoin(char *lft_str, char *buff);
#endif