Archived
1
0

what it workkks now way \!

This commit is contained in:
Adam Joly
2024-01-19 15:41:43 +01:00
parent cb8be13f46
commit 47a6fe08ff
492 changed files with 928 additions and 344 deletions

BIN
libft/ft_atoi.o Normal file

Binary file not shown.

BIN
libft/ft_bzero.o Normal file

Binary file not shown.

BIN
libft/ft_calloc.o Normal file

Binary file not shown.

BIN
libft/ft_isalnum.o Normal file

Binary file not shown.

BIN
libft/ft_isalpha.o Normal file

Binary file not shown.

BIN
libft/ft_isascii.o Normal file

Binary file not shown.

BIN
libft/ft_isdigit.o Normal file

Binary file not shown.

BIN
libft/ft_isprint.o Normal file

Binary file not shown.

BIN
libft/ft_itoa.o Normal file

Binary file not shown.

BIN
libft/ft_lstadd_back.o Normal file

Binary file not shown.

BIN
libft/ft_lstadd_front.o Normal file

Binary file not shown.

BIN
libft/ft_lstclear.o Normal file

Binary file not shown.

BIN
libft/ft_lstdelone.o Normal file

Binary file not shown.

BIN
libft/ft_lstiter.o Normal file

Binary file not shown.

BIN
libft/ft_lstlast.o Normal file

Binary file not shown.

BIN
libft/ft_lstmap.o Normal file

Binary file not shown.

BIN
libft/ft_lstnew.o Normal file

Binary file not shown.

BIN
libft/ft_lstsize.o Normal file

Binary file not shown.

BIN
libft/ft_memchr.o Normal file

Binary file not shown.

BIN
libft/ft_memcmp.o Normal file

Binary file not shown.

BIN
libft/ft_memcpy.o Normal file

Binary file not shown.

BIN
libft/ft_memmove.o Normal file

Binary file not shown.

BIN
libft/ft_memset.o Normal file

Binary file not shown.

BIN
libft/ft_putchar_fd.o Normal file

Binary file not shown.

BIN
libft/ft_putendl_fd.o Normal file

Binary file not shown.

BIN
libft/ft_putnbr_fd.o Normal file

Binary file not shown.

View File

@ -6,7 +6,7 @@
/* By: adjoly <adjoly@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/31 11:45:55 by adjoly #+# #+# */
/* Updated: 2023/11/05 15:06:13 by adjoly ### ########.fr */
/* Updated: 2024/01/17 11:26:44 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
@ -14,14 +14,5 @@
void ft_putstr_fd(char *s, int fd)
{
int i;
i = 0;
if (s == NULL)
return ;
while (s[i])
{
write(fd, &s[i], 1);
i++;
}
write(fd, s, ft_strlen(s));
}

BIN
libft/ft_putstr_fd.o Normal file

Binary file not shown.

BIN
libft/ft_split.o Normal file

Binary file not shown.

BIN
libft/ft_strchr.o Normal file

Binary file not shown.

BIN
libft/ft_strdup.o Normal file

Binary file not shown.

BIN
libft/ft_striteri.o Normal file

Binary file not shown.

BIN
libft/ft_strjoin.o Normal file

Binary file not shown.

BIN
libft/ft_strlcat.o Normal file

Binary file not shown.

BIN
libft/ft_strlcpy.o Normal file

Binary file not shown.

View File

@ -6,7 +6,7 @@
/* By: adjoly <adjoly@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/10/30 18:15:57 by adjoly #+# #+# */
/* Updated: 2023/11/01 17:15:12 by adjoly ### ########.fr */
/* Updated: 2024/01/17 11:30:30 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */
@ -14,10 +14,13 @@
size_t ft_strlen(const char *s)
{
int i;
size_t res;
i = 0;
while (s[i])
i++;
return (i);
res = 0;
while (*s)
{
s++;
res++;
}
return (res);
}

BIN
libft/ft_strlen.o Normal file

Binary file not shown.

BIN
libft/ft_strmapi.o Normal file

Binary file not shown.

BIN
libft/ft_strncmp.o Normal file

Binary file not shown.

BIN
libft/ft_strnstr.o Normal file

Binary file not shown.

BIN
libft/ft_strrchr.o Normal file

Binary file not shown.

BIN
libft/ft_strtrim.o Normal file

Binary file not shown.

BIN
libft/ft_substr.o Normal file

Binary file not shown.

BIN
libft/ft_tolower.o Normal file

Binary file not shown.

BIN
libft/ft_toupper.o Normal file

Binary file not shown.

BIN
libft/libft.a Normal file

Binary file not shown.

View File

@ -6,7 +6,7 @@
/* By: adjoly <adjoly@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/11/01 10:06:03 by adjoly #+# #+# */
/* Updated: 2023/11/11 18:37:56 by adjoly ### ########.fr */
/* Updated: 2024/01/14 15:16:49 by adjoly ### ########.fr */
/* */
/* ************************************************************************** */