-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget_next_line.h
More file actions
25 lines (23 loc) · 1.18 KB
/
get_next_line.h
File metadata and controls
25 lines (23 loc) · 1.18 KB
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.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: pyammoun <marvin@42lausanne.ch> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/01 15:24:05 by pyammoun #+# #+# */
/* Updated: 2022/02/02 14:57:38 by pyammoun ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# include <stdio.h>
# include <stdlib.h>
# include <fcntl.h>
# include <unistd.h>
size_t ft_strlen(char *buffjoin);
int ft_isn(char *buffjoin);
char *ft_strjoin(char *s1, char *s2);
char *ft_strndup(char *buffjoin, size_t n);
char *get_next_line(int fd);
#endif