docs: Adding the doxygen on all my function

This commit is contained in:
Raphael 2024-10-31 18:16:00 +01:00
parent 707e9a4177
commit f5bcbeac3c
38 changed files with 342 additions and 43 deletions

View file

@ -6,7 +6,7 @@
# By: rparodi <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2023/11/12 11:05:05 by rparodi #+# #+# #
# Updated: 2024/10/31 17:22:49 by rparodi ### ########.fr #
# Updated: 2024/10/31 17:26:05 by rparodi ### ########.fr #
# #
# **************************************************************************** #
@ -32,6 +32,10 @@ LDLIBS = -lft
INCLUDES = ./includes/libft/
# Objects
OBJDIRNAME = ./build
OBJ = $(addprefix $(OBJDIRNAME)/,$(SRC:.c=.o))
SRC = char/ft_isdigit.c \
char/ft_isalnum.c \
char/ft_isalpha.c \
@ -81,10 +85,6 @@ SRC = char/ft_isdigit.c \
str/ft_strtrim.c \
str/ft_substr.c
# Objects
OBJDIRNAME = ./build
OBJ = $(addprefix $(OBJDIRNAME)/,$(SRC:.c=.o))
# Colors
GREEN = \033[32m
GREY = \033[0;90m