|
.gitignore
|
ignore libftTester
|
2024-10-18 17:38:48 +02:00 |
|
ft_atoi.c
|
ft_atoi: correctly handle +/- at start
|
2024-10-19 18:11:30 +02:00 |
|
ft_bzero.c
|
chore: use correct size_t instead of t_size
|
2024-10-16 15:20:28 +02:00 |
|
ft_calloc.c
|
ft_calloc: do not memset if malloc returns NULL
|
2024-10-19 18:13:22 +02:00 |
|
ft_isalnum.c
|
ft_alnum: initial implementation
|
2024-10-14 14:54:43 +02:00 |
|
ft_isalpha.c
|
ft_isalpha: initial implementation
|
2024-10-14 14:29:25 +02:00 |
|
ft_isascii.c
|
ft_isascii: initial implementation
|
2024-10-14 15:01:01 +02:00 |
|
ft_isdigit.c
|
ft_isdigit: inital implementation
|
2024-10-14 14:48:30 +02:00 |
|
ft_isprint.c
|
ft_isprint: initial implementation
|
2024-10-14 15:09:25 +02:00 |
|
ft_itoa.c
|
ft_itoa: initial implementation
|
2024-10-17 17:37:10 +02:00 |
|
ft_lstadd_back_bonus.c
|
ft_lstadd_back: initial implementation
|
2024-10-21 13:32:14 +02:00 |
|
ft_lstadd_front_bonus.c
|
ft_lstadd_front: initial implementation
|
2024-10-21 11:40:47 +02:00 |
|
ft_lstclear_bonus.c
|
ft_lstclear: initial implementation
|
2024-10-21 15:18:48 +02:00 |
|
ft_lstdelone_bonus.c
|
ft_lstdelone: initial implementation
|
2024-10-21 14:52:20 +02:00 |
|
ft_lstiter_bonus.c
|
ft_lstiter: initial implementation
|
2024-10-21 17:13:04 +02:00 |
|
ft_lstlast_bonus.c
|
ft_lstlast: fix segfault when lst=NULL
|
2024-10-21 13:31:45 +02:00 |
|
ft_lstmap_bonus.c
|
ft_lstmap: initial implementation
|
2024-10-21 17:37:06 +02:00 |
|
ft_lstnew_bonus.c
|
ft_lstnew: showcase how to use int as content
|
2024-10-21 13:39:00 +02:00 |
|
ft_lstsize_bonus.c
|
ft_lstsize: norm error fixed
|
2024-10-21 12:16:09 +02:00 |
|
ft_memchr.c
|
chore: use correct size_t instead of t_size
|
2024-10-16 15:20:28 +02:00 |
|
ft_memcmp.c
|
ft_memcmp: initial implementation
|
2024-10-16 15:34:30 +02:00 |
|
ft_memcpy.c
|
ft_memcpy: do not try to copy to or from null
|
2024-10-22 12:10:08 +02:00 |
|
ft_memmove.c
|
ft_memmove: do not try to copy to or from null
|
2024-10-22 12:15:48 +02:00 |
|
ft_memset.c
|
chore: use correct size_t instead of t_size
|
2024-10-16 15:20:28 +02:00 |
|
ft_putchar_fd.c
|
ft_putchar_fd: initial implementation
|
2024-10-18 14:30:13 +02:00 |
|
ft_putendl_fd.c
|
ft_putendl_fd: initial implementation
|
2024-10-18 15:25:40 +02:00 |
|
ft_putnbr_fd.c
|
ft_putnbr_fd: initial implementation
|
2024-10-18 16:31:16 +02:00 |
|
ft_putstr_fd.c
|
ft_putstr_fd: initial implementation
|
2024-10-18 15:20:56 +02:00 |
|
ft_split.c
|
ft_split: initial implementation
|
2024-10-17 17:02:35 +02:00 |
|
ft_strchr.c
|
fix(ft_strchr): c was not cast to char for check agains \0
|
2024-10-23 10:35:01 +02:00 |
|
ft_strdup.c
|
ft_strdup: initial implementation
|
2024-10-17 11:03:37 +02:00 |
|
ft_striteri.c
|
ft_striteri: initial implementation
|
2024-10-18 12:11:55 +02:00 |
|
ft_strjoin.c
|
ft_strjoin: initial implementation
|
2024-10-17 12:11:30 +02:00 |
|
ft_strlcat.c
|
chore: use correct size_t instead of t_size
|
2024-10-16 15:20:28 +02:00 |
|
ft_strlcpy.c
|
ft_strlcpy: fix incorrect name
|
2024-10-17 10:43:33 +02:00 |
|
ft_strlen.c
|
chore: use correct size_t instead of t_size
|
2024-10-16 15:20:28 +02:00 |
|
ft_strmapi.c
|
ft_strmapi: initial implementation
|
2024-10-18 11:55:40 +02:00 |
|
ft_strncmp.c
|
ft_strncmp: work correctly if len(s1) == n && len(s2) > n
|
2024-10-22 12:28:39 +02:00 |
|
ft_strnstr.c
|
ft_strnstr: initial implementation
|
2024-10-16 15:59:48 +02:00 |
|
ft_strrchr.c
|
ft_strrchr: fix 2 small bugs
|
2024-10-18 17:47:30 +02:00 |
|
ft_strtrim.c
|
ft_strtrim: initial implementation
|
2024-10-17 14:11:16 +02:00 |
|
ft_substr.c
|
ft_substr: don't allocate too much mem + handle start outside of str
|
2024-10-19 18:36:17 +02:00 |
|
ft_tolower.c
|
ft_tolower: initial implementation
|
2024-10-16 10:32:29 +02:00 |
|
ft_toupper.c
|
ft_toupper: initial implementation
|
2024-10-16 10:28:00 +02:00 |
|
libft.h
|
ft_lstmap: initial implementation
|
2024-10-21 17:37:06 +02:00 |
|
Makefile
|
Makefile: make bonus rule phony
|
2024-10-22 11:36:47 +02:00 |