Skip to content

Commit bfeb0a6

Browse files
author
Michael MEYER
committed
clean up
1 parent 578fdf0 commit bfeb0a6

170 files changed

Lines changed: 129 additions & 2920 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Makefile

Lines changed: 129 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,136 @@
11
NAME = libft.a
22

3-
SRCS = src/ft_*.c
3+
SRCS = ft_atoi.c \
4+
ft_bzero.c \
5+
ft_foreach.c \
6+
ft_isalnum.c \
7+
ft_isalpha.c \
8+
ft_isascii.c \
9+
ft_isdigit.c \
10+
ft_isprint.c \
11+
ft_itoa.c \
12+
ft_lstadd.c \
13+
ft_lstdel.c \
14+
ft_lstdelone.c \
15+
ft_lstiter.c \
16+
ft_lstmap.c \
17+
ft_lstnew.c \
18+
ft_memalloc.c \
19+
ft_memccpy.c \
20+
ft_memchr.c \
21+
ft_memcmp.c \
22+
ft_memcpy.c \
23+
ft_memdel.c \
24+
ft_memmove.c \
25+
ft_memset.c \
26+
ft_numlen.c \
27+
ft_putchar.c \
28+
ft_putchar_fd.c \
29+
ft_putendl.c \
30+
ft_putendl_fd.c \
31+
ft_putnbr.c \
32+
ft_putnbr_fd.c \
33+
ft_putstr.c \
34+
ft_putstr_fd.c \
35+
ft_strcat.c \
36+
ft_strchr.c \
37+
ft_strclr.c \
38+
ft_strcmp.c \
39+
ft_strcpy.c \
40+
ft_strdel.c \
41+
ft_strdup.c \
42+
ft_strequ.c \
43+
ft_striter.c \
44+
ft_striteri.c \
45+
ft_strjoin.c \
46+
ft_strlcat.c \
47+
ft_strlen.c \
48+
ft_strmap.c \
49+
ft_strmapi.c \
50+
ft_strncat.c \
51+
ft_strncmp.c \
52+
ft_strncpy.c \
53+
ft_strnequ.c \
54+
ft_strnew.c \
55+
ft_strnstr.c \
56+
ft_strrchr.c \
57+
ft_strrev.c \
58+
ft_strsplit.c \
59+
ft_strstr.c \
60+
ft_strsub.c \
61+
ft_strtrim.c \
62+
ft_swap.c \
63+
ft_tolower.c \
64+
ft_toupper.c \
65+
ft_wordcount.c \
66+
ft_wordlen.c
467

5-
INC = includes
68+
INC = libft.h
669

7-
OUTPUT = ft_*.o
70+
OUTPUT = ft_atoi.o \
71+
ft_bzero.o \
72+
ft_foreach.o \
73+
ft_isalnum.o \
74+
ft_isalpha.o \
75+
ft_isascii.o \
76+
ft_isdigit.o \
77+
ft_isprint.o \
78+
ft_itoa.o \
79+
ft_lstadd.o \
80+
ft_lstdel.o \
81+
ft_lstdelone.o \
82+
ft_lstiter.o \
83+
ft_lstmap.o \
84+
ft_lstnew.o \
85+
ft_memalloc.o \
86+
ft_memccpy.o \
87+
ft_memchr.o \
88+
ft_memcmp.o \
89+
ft_memcpy.o \
90+
ft_memdel.o \
91+
ft_memmove.o \
92+
ft_memset.o \
93+
ft_numlen.o \
94+
ft_putchar.o \
95+
ft_putchar_fd.o \
96+
ft_putendl.o \
97+
ft_putendl_fd.o \
98+
ft_putnbr.o \
99+
ft_putnbr_fd.o \
100+
ft_putstr.o \
101+
ft_putstr_fd.o \
102+
ft_strcat.o \
103+
ft_strchr.o \
104+
ft_strclr.o \
105+
ft_strcmp.o \
106+
ft_strcpy.o \
107+
ft_strdel.o \
108+
ft_strdup.o \
109+
ft_strequ.o \
110+
ft_striter.o \
111+
ft_striteri.o \
112+
ft_strjoin.o \
113+
ft_strlcat.o \
114+
ft_strlen.o \
115+
ft_strmap.o \
116+
ft_strmapi.o \
117+
ft_strncat.o \
118+
ft_strncmp.o \
119+
ft_strncpy.o \
120+
ft_strnequ.o \
121+
ft_strnew.o \
122+
ft_strnstr.o \
123+
ft_strrchr.o \
124+
ft_strrev.o \
125+
ft_strsplit.o \
126+
ft_strstr.o \
127+
ft_strsub.o \
128+
ft_strtrim.o \
129+
ft_swap.o \
130+
ft_tolower.o \
131+
ft_toupper.o \
132+
ft_wordcount.o \
133+
ft_wordlen.o
8134

9135
all: $(NAME)
10136

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)