-
Notifications
You must be signed in to change notification settings - Fork 1
/
ft_string.h
27 lines (23 loc) · 1.22 KB
/
ft_string.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* ft_string.h :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jaesjeon <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/11/03 11:57:47 by jaesjeon #+# #+# */
/* Updated: 2022/11/12 19:06:25 by jaesjeon ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_STRING_H
# define FT_STRING_H
# include "get_next_line.h"
// get_next_line.c
char *get_next_line(int fd);
// string_utils.c
size_t ft_strlen(const char *s);
char *ft_strchr(const char *s, const char c);
int ft_strcmp(const char *s1, const char *s2);
char *ft_substr(const char *start, const char *end);
char *ft_strcpy(const char *s);
#endif