-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line_bonus.h
25 lines (23 loc) · 1.27 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line_bonus.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: nwattana <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/06/02 18:30:00 by nwattana #+# #+# */
/* Updated: 2022/06/02 19:04:10 by nwattana ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_BONUS_H
# define GET_NEXT_LINE_BONUS_H
# include <unistd.h>
# include <stdlib.h>
# include <limits.h>
char *get_next_line(int fd);
void *ft_calloc(size_t a, size_t b);
char *ft_strjoin(char *head, char *tail, int byte_read);
size_t ft_strlen(const char *str);
char *ft_strchr(const char *str, int tofind);
char *ft_substr(const char *s, int start, int len);
#endif