-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_next_line.h
30 lines (27 loc) · 1.32 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: rgerdzhi <[email protected] +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/09/12 17:28:56 by rgerdzhi #+# #+# */
/* Updated: 2024/09/18 21:12:23 by rgerdzhi ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# include <stdlib.h>
# include <unistd.h>
# include <stdio.h>
# include <fcntl.h>
# ifndef BUFFER_SIZE
# define BUFFER_SIZE 42
# endif
char *get_next_line(int fd);
size_t ft_strlen(char *str);
char *ft_strcpy(char *dst, const char *src);
char *ft_strncat(char *dst, const char *src, size_t n);
void *ft_memmove(void *dest, const void *src, size_t n);
char *ft_strchr(const char *s, int c);
#endif