-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_next_line.h
26 lines (22 loc) · 1.2 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* get_next_line.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ybolivar <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/07/01 14:44:54 by ybolivar #+# #+# */
/* Updated: 2022/07/05 14:42:49 by ybolivar ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef GET_NEXT_LINE_H
# define GET_NEXT_LINE_H
# include <unistd.h>
# include <stdlib.h>
void gnl_bzero(void *str, size_t len);
void *gnl_calloc(size_t count, size_t size);
char *get_next_line(int fd);
char *gnl_strchr(const char *s, int c);
size_t gnl_strlen(const char *s);
char *gnl_strjoin(char const *s1, char const *s2);
#endif