From a98353f6abb5b52cd99ee11a5eb55c1d822e799b Mon Sep 17 00:00:00 2001 From: Camille Chauvet Date: Wed, 14 Dec 2022 16:17:22 +0100 Subject: [PATCH] init --- Makefile | 32 +++++++++++++++++++++++++ gnl | 1 + libft | 1 + libftx.h | 73 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ printf | 1 + 5 files changed, 108 insertions(+) create mode 100644 Makefile create mode 160000 gnl create mode 160000 libft create mode 100644 libftx.h create mode 160000 printf diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..93e370c --- /dev/null +++ b/Makefile @@ -0,0 +1,32 @@ +OBJ = ${SRC:.c=.o} + +NAME = libftx.a + +LIBS = libft/libft.a gnl/get_next_line.a printf/ft_printf.a + +CC = clang + +FLAG = -Wall -Wextra -Werror + +all: ${NAME} + +${NAME}: ${OBJ} + make -C libft + make -C gnl + make -C printf + ar -rc $(NAME) $(LIBS) + +clean: + make -C libft clean + make -C gnl clean + make -C printf clean + +fclean: clean + rm -f ${NAME} + make -C libft fclean + make -C printf fclean + make -C gnl fclean + +re: fclean all + +.PHONY: all clean fclean re diff --git a/gnl b/gnl new file mode 160000 index 0000000..38ce802 --- /dev/null +++ b/gnl @@ -0,0 +1 @@ +Subproject commit 38ce8029e589d6c70fe387ecfaa6a3219c63d3de diff --git a/libft b/libft new file mode 160000 index 0000000..7ca0dfb --- /dev/null +++ b/libft @@ -0,0 +1 @@ +Subproject commit 7ca0dfbc542795f8ecdb007f66a3193942a593e3 diff --git a/libftx.h b/libftx.h new file mode 100644 index 0000000..a1f2794 --- /dev/null +++ b/libftx.h @@ -0,0 +1,73 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* libftx.h :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cchauvet +# include + +int ft_printf(const char *format, ...); +char *get_next_line(int fd); + +int ft_atoi(const char *nptr); +void ft_bzero(void *s, size_t n); +void *ft_calloc(size_t nmemb, size_t size); +int ft_isalnum(int c); +int ft_isalpha(int c); +int ft_isascii(int c); +int ft_isdigit(int c); +int ft_isprint(int c); +void *ft_memchr(const void *s, int c, size_t n); +int ft_memcmp(const void *s1, const void *s2, size_t n); +void *ft_memcpy(void *dest, const void *src, size_t n); +void *ft_memmove(void *dest, const void *src, size_t n); +void *ft_memset(void *s, int c, size_t n); +char *ft_strchr(const char *s, int c); +char *ft_strdup(const char *s); +size_t ft_strlcat(char *dst, const char *src, size_t size); +size_t ft_strlcpy(char *dst, const char *src, size_t size); +size_t ft_strlen(const char *s); +int ft_strncmp(const char *s1, const char *s2, size_t n); +char *ft_strnstr(const char *big, const char *little, size_t len); +char *ft_strrchr(const char *s, int c); +int ft_tolower(int c); +int ft_toupper(int c); + +char *ft_substr(char const *s, unsigned int start, size_t len); +char *ft_strjoin(char const *s1, char const *s2); +char *ft_strtrim(char const *s1, char const *set); +char **ft_split(char const *s, char c); +char *ft_itoa(int n); +char *ft_strmapi(char const *s, char (*f)(unsigned int, char)); +void ft_striteri(char *s, void (*f)(unsigned int, char*)); +void ft_putchar_fd(char c, int fd); +void ft_putstr_fd(char *s, int fd); +void ft_putendl_fd(char *s, int fd); +void ft_putnbr_fd(int n, int fd); + +typedef struct s_list +{ + void *content; + struct s_list *next; +} t_list; + +t_list *ft_lstnew(void *content); +void ft_lstadd_front(t_list **lst, t_list *nouveau); +int ft_lstsize(t_list *lst); +t_list *ft_lstlast(t_list *lst); +void ft_lstadd_back(t_list **lst, t_list *nouveau); +void ft_lstdelone(t_list *lst, void (*del)(void *)); +void ft_lstclear(t_list **lst, void (*del)(void *)); +void ft_lstiter(t_list *lst, void (*f)(void *)); +t_list *ft_lstmap(t_list *lst, void *(*f)(void *), void (*del)(void *)); + +#endif diff --git a/printf b/printf new file mode 160000 index 0000000..898be16 --- /dev/null +++ b/printf @@ -0,0 +1 @@ +Subproject commit 898be1619f6f91d11e1ed7ea0b8fe4f70c42a70f