index
:
libft.git
cub3d
fractol
ft_ls
ft_select
ft_ssl
malloc
master
minishell
push_swap
rendu
scop
School project: Rewritting some libc functions and adding new ones
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
Diffstat
-rw-r--r--
Makefile
51
-rw-r--r--
include/libft.h
28
-rw-r--r--
include/libft_algo.h
59
-rw-r--r--
include/libft_bt.h
28
-rw-r--r--
include/libft_ctype.h
36
-rw-r--r--
include/libft_ht.h
57
-rw-r--r--
include/libft_io.h
46
-rw-r--r--
include/libft_lst.h
54
-rw-r--r--
include/libft_mem.h
39
-rw-r--r--
include/libft_printf.h
27
-rw-r--r--
include/libft_str.h
86
-rw-r--r--
include/libft_types.h
30
-rwxr-xr-x
script/find_src.sh
20
-rwxr-xr-x
script/generate_boilerplate_test.sh
9
-rwxr-xr-x
script/generate_rendu.sh
26
-rw-r--r--
script/generate_rendu_makefile.sh
5
-rw-r--r--
script/template.makefile
38
-rw-r--r--
script/test.sh
14
-rw-r--r--
src/algo/ft_bsearch.c
32
-rw-r--r--
src/algo/ft_compar_int.c
18
-rw-r--r--
src/algo/ft_heapsort.c
54
-rw-r--r--
src/algo/ft_is_set.c
32
-rw-r--r--
src/algo/ft_lfind.c
28
-rw-r--r--
src/algo/ft_lsearch.c
23
-rw-r--r--
src/algo/ft_mergesort.c
76
-rw-r--r--
src/algo/ft_qsort.c
64
-rw-r--r--
src/algo/ft_reverse.c
27
-rw-r--r--
src/bt/ft_btdestroy.c
23
-rw-r--r--
src/bt/ft_btnew.c
25
-rw-r--r--
src/ctype/ft_isalnum.c
18
-rw-r--r--
src/ctype/ft_isalpha.c
16
-rw-r--r--
src/ctype/ft_isascii.c
16
-rw-r--r--
src/ctype/ft_isblank.c
16
-rw-r--r--
src/ctype/ft_isdigit.c
16
-rw-r--r--
src/ctype/ft_isprint.c
16
-rw-r--r--
src/ctype/ft_isspace.c
19
-rw-r--r--
src/ctype/ft_todigit.c
20
-rw-r--r--
src/ctype/ft_tolower.c
24
-rw-r--r--
src/ctype/ft_toupper.c
20
-rw-r--r--
src/ft_bzero.c
(renamed from src/mem/ft_bzero.c)
0
-rw-r--r--
src/ft_memcpy.c
(renamed from src/mem/ft_memcpy.c)
4
-rw-r--r--
src/ft_memset.c
(renamed from src/mem/ft_memset.c)
4
-rw-r--r--
src/ft_putchar.c
(renamed from src/io/ft_putchar.c)
0
-rw-r--r--
src/ft_putchar_fd.c
(renamed from src/io/ft_putchar_fd.c)
0
-rw-r--r--
src/ft_putendl.c
(renamed from src/io/ft_putendl.c)
0
-rw-r--r--
src/ft_putendl_fd.c
(renamed from src/io/ft_putendl_fd.c)
0
-rw-r--r--
src/ft_putnbr.c
(renamed from src/io/ft_putnbr.c)
0
-rw-r--r--
src/ft_putnbr_fd.c
(renamed from src/io/ft_putnbr_fd.c)
0
-rw-r--r--
src/ft_putstr.c
(renamed from src/io/ft_putstr.c)
0
-rw-r--r--
src/ft_putstr_fd.c
(renamed from src/io/ft_putstr_fd.c)
0
-rw-r--r--
src/ft_strlen.c
(renamed from src/lst/ft_lstsize.c)
16
-rw-r--r--
src/ht/ft_htcontent_new.c
31
-rw-r--r--
src/ht/ft_htdelone.c
21
-rw-r--r--
src/ht/ft_htdestroy.c
24
-rw-r--r--
src/ht/ft_htget.c
29
-rw-r--r--
src/ht/ft_hthash.c
28
-rw-r--r--
src/ht/ft_htnew.c
32
-rw-r--r--
src/ht/ft_htset.c
45
-rw-r--r--
src/ht/ft_inter_htkey_cmp.c
21
-rw-r--r--
src/io/ft_getchar.c
22
-rw-r--r--
src/io/ft_next_line.c
113
-rw-r--r--
src/io/ft_printf/ft_asprintf.c
24
-rw-r--r--
src/io/ft_printf/ft_dprintf.c
24
-rw-r--r--
src/io/ft_printf/ft_printf.c
24
-rw-r--r--
src/io/ft_printf/ft_snprintf.c
24
-rw-r--r--
src/io/ft_printf/ft_sprintf.c
24
-rw-r--r--
src/io/ft_printf/ft_vasprintf.c
21
-rw-r--r--
src/io/ft_printf/ft_vasprintf.h
155
-rw-r--r--
src/io/ft_printf/ft_vdprintf.c
24
-rw-r--r--
src/io/ft_printf/ft_vprintf.c
18
-rw-r--r--
src/io/ft_printf/ft_vsnprintf.c
26
-rw-r--r--
src/io/ft_printf/ft_vsprintf.c
18
-rw-r--r--
src/io/ft_printf/internals/convert.c
122
-rw-r--r--
src/io/ft_printf/internals/convert_char.c
53
-rw-r--r--
src/io/ft_printf/internals/convert_hex.c
34
-rw-r--r--
src/io/ft_printf/internals/convert_int.c
40
-rw-r--r--
src/io/ft_printf/internals/convert_none.c
25
-rw-r--r--
src/io/ft_printf/internals/convert_percent.c
23
-rw-r--r--
src/io/ft_printf/internals/convert_ptr.c
29
-rw-r--r--
src/io/ft_printf/internals/convert_str.c
25
-rw-r--r--
src/io/ft_printf/internals/convert_uint.c
34
-rw-r--r--
src/io/ft_printf/internals/convert_written.c
28
-rw-r--r--
src/io/ft_printf/internals/extract.c
98
-rw-r--r--
src/io/ft_printf/internals/length_modifier.c
39
-rw-r--r--
src/io/ft_printf/internals/list.c
67
-rw-r--r--
src/io/ft_printf/internals/parse.c
61
-rw-r--r--
src/io/ft_printf/internals/utils.c
115
-rw-r--r--
src/lst/ft_lstadd_back.c
26
-rw-r--r--
src/lst/ft_lstadd_front.c
22
-rw-r--r--
src/lst/ft_lstbsearch.c
65
-rw-r--r--
src/lst/ft_lstclear.c
25
-rw-r--r--
src/lst/ft_lstdelone.c
23
-rw-r--r--
src/lst/ft_lstiter.c
25
-rw-r--r--
src/lst/ft_lstlast.c
23
-rw-r--r--
src/lst/ft_lstlfind.c
22
-rw-r--r--
src/lst/ft_lstlsearch.c
27
-rw-r--r--
src/lst/ft_lstmap.c
49
-rw-r--r--
src/lst/ft_lstnew.c
25
-rw-r--r--
src/lst/ft_lstpop_front.c
25
-rw-r--r--
src/lst/ft_lstremove_if.c
32
-rw-r--r--
src/lst/ft_lstreverse.c
19
-rw-r--r--
src/lst/ft_lstreverse_ret.c
28
-rw-r--r--
src/lst/ft_lstsort.c
40
-rw-r--r--
src/lst/ft_lstsorted_merge.c
35
-rw-r--r--
src/mem/ft_calloc.c
23
-rw-r--r--
src/mem/ft_memalloc.c
18
-rw-r--r--
src/mem/ft_memccpy.c
31
-rw-r--r--
src/mem/ft_memchr.c
26
-rw-r--r--
src/mem/ft_memcmp.c
30
-rw-r--r--
src/mem/ft_memdel.c
21
-rw-r--r--
src/mem/ft_memmem.c
58
-rw-r--r--
src/mem/ft_memmove.c
35
-rw-r--r--
src/mem/ft_memset_pattern4.c
26
-rw-r--r--
src/mem/ft_memswap.c
29
-rw-r--r--
src/str/ft_atoi.c
18
-rw-r--r--
src/str/ft_atoi_strict.c
38
-rw-r--r--
src/str/ft_itoa.c
40
-rw-r--r--
src/str/ft_split.c
73
-rw-r--r--
src/str/ft_strcasecmp.c
24
-rw-r--r--
src/str/ft_strcat.c
19
-rw-r--r--
src/str/ft_strchr.c
18
-rw-r--r--
src/str/ft_strclr.c
20
-rw-r--r--
src/str/ft_strcmp.c
23
-rw-r--r--
src/str/ft_strcount.c
24
-rw-r--r--
src/str/ft_strcpy.c
18
-rw-r--r--
src/str/ft_strcspn.c
23
-rw-r--r--
src/str/ft_strdel.c
18
-rw-r--r--
src/str/ft_strdup.c
22
-rw-r--r--
src/str/ft_strequ.c
20
-rw-r--r--
src/str/ft_striter.c
21
-rw-r--r--
src/str/ft_striteri.c
27
-rw-r--r--
src/str/ft_strjoin.c
25
-rw-r--r--
src/str/ft_strjoinf.c
35
-rw-r--r--
src/str/ft_strlcat.c
32
-rw-r--r--
src/str/ft_strlcpy.c
28
-rw-r--r--
src/str/ft_strlen.c
41
-rw-r--r--
src/str/ft_strmap.c
34
-rw-r--r--
src/str/ft_strmapi.c
34
-rw-r--r--
src/str/ft_strncasecmp.c
26
-rw-r--r--
src/str/ft_strncat.c
29
-rw-r--r--
src/str/ft_strncmp.c
26
-rw-r--r--
src/str/ft_strncpy.c
24
-rw-r--r--
src/str/ft_strndup.c
23
-rw-r--r--
src/str/ft_strnequ.c
20