-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathget_next_line_bonus.h
29 lines (27 loc) · 1.32 KB
/
get_next_line_bonus.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_bonus.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: gemartin <gemartin@student.42barc...> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/03/02 12:53:00 by gemartin #+# #+# */
/* Updated: 2022/03/02 13:45:14 by gemartin ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_BONUS_H
# define GET_NEXT_LINE_BONUS_H
# include<unistd.h>
# include<stdio.h>
# include<stdlib.h>
# include<fcntl.h>
# include<limits.h>
size_t ft_strlcpy(char *dst, char *src, size_t dstsize);
size_t ft_strlen(char *s);
char *ft_strjoin(char *s1, char *s2);
char *ft_strdup(char *s1);
char *ft_strchr(char *s, int c);
char *ft_substr(char *s, unsigned int start, size_t len);
char *get_next_line(int fd);
char *ft_free(char **str);
#endif