-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathft_list
69 lines (66 loc) · 940 Bytes
/
ft_list
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
FUNCTIONS = \
ft_memset \
\
ft_strlen \
ft_isalpha \
ft_isdigit \
ft_isalnum \
ft_isascii \
ft_isprint \
\
ft_toupper \
ft_tolower \
ft_memchr \
ft_strchr \
ft_strrchr \
ft_bzero \
\
ft_memcpy \
ft_strcpy \
ft_strcat \
ft_strcmp \
ft_strstr \
ft_memmove \
ft_memcmp \
\
ft_strlcat \
ft_strdup \
ft_atoi \
ft_memccpy \
ft_strnstr \
ft_strncmp \
ft_strncpy \
ft_strncat \
\
ft_memalloc \
ft_putchar \
ft_putstr \
ft_putendl \
ft_putnbr \
ft_strnew \
ft_strdel \
ft_strclr \
ft_strequ \
ft_strnequ \
ft_strsub \
ft_strjoin \
ft_putchar_fd \
ft_putstr_fd \
ft_putendl__fd \
ft_putnbr_fd \
\
ft_memdel \
ft_striter \
ft_striteri \
ft_strmap \
ft_strmapi \
ft_strtrim \
ft_strsplit \
ft_itoa \
\
ft_lstnew \
ft_lstadd \
ft_lstdelone \
ft_lstdel \
ft_lstiter \
ft_lstmap \