-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathget_next_line.h
28 lines (24 loc) · 1.23 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
/* ************************************************************************** */
/* */
/* :::::::: */
/* get_next_line.h :+: :+: */
/* +:+ */
/* By: opelman <[email protected]> +#+ */
/* +#+ */
/* Created: 2023/11/13 17:25:10 by opelman #+# #+# */
/* Updated: 2023/12/21 12:02:14 by opelman ######## odam.nl */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# include <stdlib.h>
# include <stddef.h>
# include <unistd.h>
# include <fcntl.h>
char *get_next_line(int fd);
size_t ft_strlen(void *c);
void *ft_alloc(size_t size);
void *ft_memmove(void *dest, void *src, size_t n);
size_t ft_strlcpy(char *dst, char *src, size_t size);
char *ft_strchr(void *s, int c);
#endif