-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathget_next_line.h
More file actions
35 lines (30 loc) · 1.36 KB
/
get_next_line.h
File metadata and controls
35 lines (30 loc) · 1.36 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
26
27
28
29
30
31
32
33
34
35
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: sryou <sryou@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/04/08 16:38:45 by sryou #+# #+# */
/* Updated: 2022/08/16 14:32:32 by sryou ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# include <stdlib.h>
# ifndef BUFFER_SIZE
# define BUFFER_SIZE 42
# endif
# ifndef OPEN_MAX
# define OPEN_MAX 65535
# endif
# ifndef B_MAX
# define B_MAX 2147483648
# endif
char *get_next_line(int fd);
char *ft_free(char **line);
int ft_strmylen(char *str);
void ft_strmycat(char *dst, char *src, int dstsize, int srcsize);
int ft_strmyjoin(char **line, char *buffer);
void ft_strmycat(char *dst, char *src, int dstsize, int srcsize);
#endif