├── .gitignore ├── README.md ├── libft ├── Makefile ├── src │ ├── mem │ │ ├── test_bzero.c │ │ ├── test_memchr.c │ │ ├── test_memcmp.c │ │ ├── test_memcpy.c │ │ ├── test_memmove.c │ │ └── test_memset.c │ ├── put │ │ ├── test_putchar.c │ │ ├── test_putendl.c │ │ ├── test_putnbr.c │ │ └── test_putstr.c │ ├── str │ │ ├── test_strchr.c │ │ ├── test_strdup.c │ │ ├── test_striteri.c │ │ ├── test_strjoin.c │ │ ├── test_strlcat.c │ │ ├── test_strlcpy.c │ │ ├── test_strlen.c │ │ ├── test_strmapi.c │ │ ├── test_strncmp.c │ │ ├── test_strnstr.c │ │ ├── test_strrchr.c │ │ ├── test_strtrim.c │ │ └── test_substr.c │ ├── test.c │ ├── test.h │ ├── test_atoi.c │ ├── test_calloc.c │ ├── test_is.c │ ├── test_itoa.c │ ├── test_split.c │ └── test_to.c ├── src_bonus │ ├── taux_lst.c │ ├── test_bonus.c │ ├── test_bonus.h │ ├── test_lstadd_back.c │ ├── test_lstadd_front.c │ ├── test_lstclear.c │ ├── test_lstdelone.c │ ├── test_lstiter.c │ ├── test_lstlast.c │ ├── test_lstmap.c │ ├── test_lstnew.c │ └── test_lstsize.c ├── symbols │ ├── externals │ ├── functions │ └── functions_bonus └── tester ├── setup ├── tlib ├── Makefile ├── tlib.h ├── tlib_aux.c ├── tlib_global.c ├── tlib_int.h ├── tlib_log.c ├── tlib_mockmalloc.c ├── tlib_print.c └── tlib_test.c ├── tools ├── Makefile ├── bonuscheck ├── detectproject ├── normcheck ├── src │ └── filterlist.c └── symbolcheck ├── version.txt └── zeus /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/README.md -------------------------------------------------------------------------------- /libft/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/Makefile -------------------------------------------------------------------------------- /libft/src/mem/test_bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/mem/test_bzero.c -------------------------------------------------------------------------------- /libft/src/mem/test_memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/mem/test_memchr.c -------------------------------------------------------------------------------- /libft/src/mem/test_memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/mem/test_memcmp.c -------------------------------------------------------------------------------- /libft/src/mem/test_memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/mem/test_memcpy.c -------------------------------------------------------------------------------- /libft/src/mem/test_memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/mem/test_memmove.c -------------------------------------------------------------------------------- /libft/src/mem/test_memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/mem/test_memset.c -------------------------------------------------------------------------------- /libft/src/put/test_putchar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/put/test_putchar.c -------------------------------------------------------------------------------- /libft/src/put/test_putendl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/put/test_putendl.c -------------------------------------------------------------------------------- /libft/src/put/test_putnbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/put/test_putnbr.c -------------------------------------------------------------------------------- /libft/src/put/test_putstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/put/test_putstr.c -------------------------------------------------------------------------------- /libft/src/str/test_strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/str/test_strchr.c -------------------------------------------------------------------------------- /libft/src/str/test_strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/str/test_strdup.c -------------------------------------------------------------------------------- /libft/src/str/test_striteri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/str/test_striteri.c -------------------------------------------------------------------------------- /libft/src/str/test_strjoin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/str/test_strjoin.c -------------------------------------------------------------------------------- /libft/src/str/test_strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/str/test_strlcat.c -------------------------------------------------------------------------------- /libft/src/str/test_strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/str/test_strlcpy.c -------------------------------------------------------------------------------- /libft/src/str/test_strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/str/test_strlen.c -------------------------------------------------------------------------------- /libft/src/str/test_strmapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/str/test_strmapi.c -------------------------------------------------------------------------------- /libft/src/str/test_strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/str/test_strncmp.c -------------------------------------------------------------------------------- /libft/src/str/test_strnstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/str/test_strnstr.c -------------------------------------------------------------------------------- /libft/src/str/test_strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/str/test_strrchr.c -------------------------------------------------------------------------------- /libft/src/str/test_strtrim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/str/test_strtrim.c -------------------------------------------------------------------------------- /libft/src/str/test_substr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/str/test_substr.c -------------------------------------------------------------------------------- /libft/src/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/test.c -------------------------------------------------------------------------------- /libft/src/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/test.h -------------------------------------------------------------------------------- /libft/src/test_atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/test_atoi.c -------------------------------------------------------------------------------- /libft/src/test_calloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/test_calloc.c -------------------------------------------------------------------------------- /libft/src/test_is.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/test_is.c -------------------------------------------------------------------------------- /libft/src/test_itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/test_itoa.c -------------------------------------------------------------------------------- /libft/src/test_split.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/test_split.c -------------------------------------------------------------------------------- /libft/src/test_to.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src/test_to.c -------------------------------------------------------------------------------- /libft/src_bonus/taux_lst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src_bonus/taux_lst.c -------------------------------------------------------------------------------- /libft/src_bonus/test_bonus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src_bonus/test_bonus.c -------------------------------------------------------------------------------- /libft/src_bonus/test_bonus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src_bonus/test_bonus.h -------------------------------------------------------------------------------- /libft/src_bonus/test_lstadd_back.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src_bonus/test_lstadd_back.c -------------------------------------------------------------------------------- /libft/src_bonus/test_lstadd_front.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src_bonus/test_lstadd_front.c -------------------------------------------------------------------------------- /libft/src_bonus/test_lstclear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src_bonus/test_lstclear.c -------------------------------------------------------------------------------- /libft/src_bonus/test_lstdelone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src_bonus/test_lstdelone.c -------------------------------------------------------------------------------- /libft/src_bonus/test_lstiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src_bonus/test_lstiter.c -------------------------------------------------------------------------------- /libft/src_bonus/test_lstlast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src_bonus/test_lstlast.c -------------------------------------------------------------------------------- /libft/src_bonus/test_lstmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src_bonus/test_lstmap.c -------------------------------------------------------------------------------- /libft/src_bonus/test_lstnew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src_bonus/test_lstnew.c -------------------------------------------------------------------------------- /libft/src_bonus/test_lstsize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/src_bonus/test_lstsize.c -------------------------------------------------------------------------------- /libft/symbols/externals: -------------------------------------------------------------------------------- 1 | free 2 | malloc 3 | write 4 | stack_chk_fail -------------------------------------------------------------------------------- /libft/symbols/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/symbols/functions -------------------------------------------------------------------------------- /libft/symbols/functions_bonus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/symbols/functions_bonus -------------------------------------------------------------------------------- /libft/tester: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/libft/tester -------------------------------------------------------------------------------- /setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/setup -------------------------------------------------------------------------------- /tlib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/tlib/Makefile -------------------------------------------------------------------------------- /tlib/tlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/tlib/tlib.h -------------------------------------------------------------------------------- /tlib/tlib_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/tlib/tlib_aux.c -------------------------------------------------------------------------------- /tlib/tlib_global.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/tlib/tlib_global.c -------------------------------------------------------------------------------- /tlib/tlib_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/tlib/tlib_int.h -------------------------------------------------------------------------------- /tlib/tlib_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/tlib/tlib_log.c -------------------------------------------------------------------------------- /tlib/tlib_mockmalloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/tlib/tlib_mockmalloc.c -------------------------------------------------------------------------------- /tlib/tlib_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/tlib/tlib_print.c -------------------------------------------------------------------------------- /tlib/tlib_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/tlib/tlib_test.c -------------------------------------------------------------------------------- /tools/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/tools/Makefile -------------------------------------------------------------------------------- /tools/bonuscheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/tools/bonuscheck -------------------------------------------------------------------------------- /tools/detectproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/tools/detectproject -------------------------------------------------------------------------------- /tools/normcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/tools/normcheck -------------------------------------------------------------------------------- /tools/src/filterlist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/tools/src/filterlist.c -------------------------------------------------------------------------------- /tools/symbolcheck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/tools/symbolcheck -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 0.0.17 -------------------------------------------------------------------------------- /zeus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ander-vieira/42zeus/HEAD/zeus --------------------------------------------------------------------------------