Skip to content

Commit 72916a4

Browse files
author
David Felix
committed
import my project from school repository
0 parents  commit 72916a4

Some content is hidden

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

79 files changed

+2484
-0
lines changed

Makefile

+102
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
NAME = libft.a
2+
3+
CFLAG = -Wall -Werror -Wextra
4+
5+
INCLUDE = ./libft.h
6+
7+
FT_C = ft_atoi.c \
8+
ft_bzero.c \
9+
ft_countline.c \
10+
ft_countword.c \
11+
ft_isalnum.c \
12+
ft_isalpha.c \
13+
ft_isascii.c \
14+
ft_isdigit.c \
15+
ft_isprint.c \
16+
ft_itoa.c \
17+
ft_lstadd.c \
18+
ft_lstdel.c \
19+
ft_lstdelone.c \
20+
ft_lstiter.c \
21+
ft_lstmap.c \
22+
ft_lstnew.c \
23+
ft_lstsize.c \
24+
ft_memalloc.c \
25+
ft_memccpy.c \
26+
ft_memchr.c \
27+
ft_memcmp.c \
28+
ft_memcpy.c \
29+
ft_memdel.c \
30+
ft_memmove.c \
31+
ft_memset.c \
32+
ft_negpower.c \
33+
ft_power.c \
34+
ft_putchar.c \
35+
ft_putchar_fd.c \
36+
ft_putendl.c \
37+
ft_putendl_fd.c \
38+
ft_putnbr.c \
39+
ft_putnbr_fd.c \
40+
ft_putstr.c \
41+
ft_putstr_fd.c \
42+
ft_strcat.c \
43+
ft_strchr.c \
44+
ft_strclr.c \
45+
ft_strcmp.c \
46+
ft_strcpy.c \
47+
ft_strdel.c \
48+
ft_strdup.c \
49+
ft_strequ.c \
50+
ft_strinc.c \
51+
ft_strisalnum.c \
52+
ft_strisalpha.c \
53+
ft_strisascii.c \
54+
ft_strisdigit.c \
55+
ft_strisprint.c \
56+
ft_striter.c \
57+
ft_striteri.c \
58+
ft_strjoin.c \
59+
ft_strjoinfree.c \
60+
ft_strlcat.c \
61+
ft_strlen.c \
62+
ft_strmap.c \
63+
ft_strmapi.c \
64+
ft_strncat.c \
65+
ft_strncmp.c \
66+
ft_strncpy.c \
67+
ft_strndup.c \
68+
ft_strnequ.c \
69+
ft_strnew.c \
70+
ft_strnrepc.c \
71+
ft_strnstr.c \
72+
ft_strposic.c \
73+
ft_strrchr.c \
74+
ft_strrepc.c \
75+
ft_strrev.c \
76+
ft_strsplit.c \
77+
ft_strstr.c \
78+
ft_strsub.c \
79+
ft_strtrim.c \
80+
ft_swap.c \
81+
ft_tabdel.c \
82+
ft_tolower.c \
83+
ft_toupper.c
84+
85+
FT_O = $(FT_C:.c=.o)
86+
87+
all: $(NAME)
88+
89+
$(NAME): $(FT_O)
90+
ar rc $(NAME) $(FT_O)
91+
ranlib $(NAME)
92+
93+
%.o: %.c
94+
gcc $(CFLAG) -I $(INCLUDE) -c $< -o $@
95+
96+
clean:
97+
rm -f $(FT_O)
98+
99+
fclean: clean
100+
rm -f $(NAME)
101+
102+
re: fclean $(NAME)

ft_atoi.c

+39
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
/* ************************************************************************** */
2+
/* LE - / */
3+
/* / */
4+
/* ft_atoi.c .:: .:/ . .:: */
5+
/* +:+:+ +: +: +:+:+ */
6+
/* By: davfelix <[email protected]> +:+ +: +: +:+ */
7+
/* #+# #+ #+ #+# */
8+
/* Created: 2018/10/09 19:16:46 by davfelix #+# ## ## #+# */
9+
/* Updated: 2018/11/06 09:07:53 by davfelix ### #+. /#+ ###.fr */
10+
/* / */
11+
/* / */
12+
/* ************************************************************************** */
13+
14+
#include "libft.h"
15+
16+
int ft_atoi(const char *str)
17+
{
18+
int sign;
19+
int val;
20+
int i;
21+
22+
sign = 1;
23+
val = 0;
24+
i = 0;
25+
while ((str[i] >= 9 && str[i] <= 13) || str[i] == ' ')
26+
i++;
27+
if (str[i] == '+' || str[i] == '-')
28+
{
29+
if (str[i] == '-')
30+
sign = -1;
31+
i++;
32+
}
33+
while ((str[i] >= '0' && str[i] <= '9'))
34+
{
35+
val = val * 10 + (str[i] - '0');
36+
i++;
37+
}
38+
return (val * sign);
39+
}

ft_bzero.c

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/* ************************************************************************** */
2+
/* LE - / */
3+
/* / */
4+
/* ft_bzero.c .:: .:/ . .:: */
5+
/* +:+:+ +: +: +:+:+ */
6+
/* By: davfelix <[email protected]> +:+ +: +: +:+ */
7+
/* #+# #+ #+ #+# */
8+
/* Created: 2018/10/12 10:23:46 by davfelix #+# ## ## #+# */
9+
/* Updated: 2018/11/15 13:59:23 by davfelix ### #+. /#+ ###.fr */
10+
/* / */
11+
/* / */
12+
/* ************************************************************************** */
13+
14+
#include "libft.h"
15+
16+
void ft_bzero(void *s, size_t n)
17+
{
18+
ft_memset(((unsigned char *)s), '\0', n);
19+
}

ft_countline.c

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/* ************************************************************************** */
2+
/* LE - / */
3+
/* / */
4+
/* ft_countline.c .:: .:/ . .:: */
5+
/* +:+:+ +: +: +:+:+ */
6+
/* By: davfelix <[email protected]> +:+ +: +: +:+ */
7+
/* #+# #+ #+ #+# */
8+
/* Created: 2018/11/08 11:53:11 by davfelix #+# ## ## #+# */
9+
/* Updated: 2018/11/15 11:15:57 by davfelix ### #+. /#+ ###.fr */
10+
/* / */
11+
/* / */
12+
/* ************************************************************************** */
13+
14+
#include "libft.h"
15+
16+
size_t ft_countline(char *str)
17+
{
18+
size_t nb;
19+
20+
nb = 1;
21+
if (!*str)
22+
return (0);
23+
while (*str)
24+
{
25+
if (*str == '\n')
26+
nb++;
27+
str++;
28+
}
29+
return (nb);
30+
}

ft_countword.c

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/* ************************************************************************** */
2+
/* LE - / */
3+
/* / */
4+
/* ft_countword.c .:: .:/ . .:: */
5+
/* +:+:+ +: +: +:+:+ */
6+
/* By: davfelix <[email protected]> +:+ +: +: +:+ */
7+
/* #+# #+ #+ #+# */
8+
/* Created: 2018/11/06 18:23:12 by davfelix #+# ## ## #+# */
9+
/* Updated: 2018/11/15 11:17:02 by davfelix ### #+. /#+ ###.fr */
10+
/* / */
11+
/* / */
12+
/* ************************************************************************** */
13+
14+
#include "libft.h"
15+
16+
size_t ft_countword(char const *s, char c)
17+
{
18+
int i;
19+
size_t nb_word;
20+
int is_new_word;
21+
22+
i = 0;
23+
nb_word = 0;
24+
is_new_word = 1;
25+
while (s[i] != '\0')
26+
{
27+
if (s[i] != c && is_new_word == 1)
28+
{
29+
nb_word++;
30+
is_new_word = 0;
31+
}
32+
else if (s[i] == c)
33+
is_new_word = 1;
34+
i++;
35+
}
36+
return (nb_word);
37+
}

ft_isalnum.c

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/* ************************************************************************** */
2+
/* LE - / */
3+
/* / */
4+
/* ft_isalnum.c .:: .:/ . .:: */
5+
/* +:+:+ +: +: +:+:+ */
6+
/* By: davfelix <[email protected]> +:+ +: +: +:+ */
7+
/* #+# #+ #+ #+# */
8+
/* Created: 2018/10/09 18:04:33 by davfelix #+# ## ## #+# */
9+
/* Updated: 2018/10/13 10:27:39 by davfelix ### #+. /#+ ###.fr */
10+
/* / */
11+
/* / */
12+
/* ************************************************************************** */
13+
14+
#include "libft.h"
15+
16+
int ft_isalnum(int c)
17+
{
18+
if (ft_isalpha(c) != 0 || ft_isdigit(c) != 0)
19+
return (1);
20+
else
21+
return (0);
22+
}

ft_isalpha.c

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/* ************************************************************************** */
2+
/* LE - / */
3+
/* / */
4+
/* ft_isalpha.c .:: .:/ . .:: */
5+
/* +:+:+ +: +: +:+:+ */
6+
/* By: davfelix <[email protected]> +:+ +: +: +:+ */
7+
/* #+# #+ #+ #+# */
8+
/* Created: 2018/10/09 15:32:42 by davfelix #+# ## ## #+# */
9+
/* Updated: 2018/11/02 19:31:11 by davfelix ### #+. /#+ ###.fr */
10+
/* / */
11+
/* / */
12+
/* ************************************************************************** */
13+
14+
#include "libft.h"
15+
16+
int ft_isalpha(int c)
17+
{
18+
if ((c >= 'A' && c <= 'Z') || (c >= 'a' && c <= 'z'))
19+
return (1);
20+
else
21+
return (0);
22+
}

ft_isascii.c

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/* ************************************************************************** */
2+
/* LE - / */
3+
/* / */
4+
/* ft_isascii.c .:: .:/ . .:: */
5+
/* +:+:+ +: +: +:+:+ */
6+
/* By: davfelix <[email protected]> +:+ +: +: +:+ */
7+
/* #+# #+ #+ #+# */
8+
/* Created: 2018/10/09 18:13:12 by davfelix #+# ## ## #+# */
9+
/* Updated: 2018/11/02 18:37:22 by davfelix ### #+. /#+ ###.fr */
10+
/* / */
11+
/* / */
12+
/* ************************************************************************** */
13+
14+
#include "libft.h"
15+
16+
int ft_isascii(int c)
17+
{
18+
if (c >= 0 && c <= 127)
19+
return (1);
20+
else
21+
return (0);
22+
}

ft_isdigit.c

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/* ************************************************************************** */
2+
/* LE - / */
3+
/* / */
4+
/* ft_isdigit.c .:: .:/ . .:: */
5+
/* +:+:+ +: +: +:+:+ */
6+
/* By: davfelix <[email protected]> +:+ +: +: +:+ */
7+
/* #+# #+ #+ #+# */
8+
/* Created: 2018/10/09 17:50:20 by davfelix #+# ## ## #+# */
9+
/* Updated: 2018/10/09 18:03:22 by davfelix ### #+. /#+ ###.fr */
10+
/* / */
11+
/* / */
12+
/* ************************************************************************** */
13+
14+
#include "libft.h"
15+
16+
int ft_isdigit(int c)
17+
{
18+
if (c >= '0' && c <= '9')
19+
return (1);
20+
else
21+
return (0);
22+
}

ft_isprint.c

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
/* ************************************************************************** */
2+
/* LE - / */
3+
/* / */
4+
/* ft_isprint.c .:: .:/ . .:: */
5+
/* +:+:+ +: +: +:+:+ */
6+
/* By: davfelix <[email protected]> +:+ +: +: +:+ */
7+
/* #+# #+ #+ #+# */
8+
/* Created: 2018/10/09 18:54:18 by davfelix #+# ## ## #+# */
9+
/* Updated: 2018/10/09 18:57:38 by davfelix ### #+. /#+ ###.fr */
10+
/* / */
11+
/* / */
12+
/* ************************************************************************** */
13+
14+
#include "libft.h"
15+
16+
int ft_isprint(int c)
17+
{
18+
if (c >= 32 && c <= 126)
19+
return (1);
20+
else
21+
return (0);
22+
}

0 commit comments

Comments
 (0)