docs: adding documentation on my libft

This commit is contained in:
Raphael 2024-10-31 18:17:43 +01:00
parent c947e43e51
commit 83cc8419a0
47 changed files with 624 additions and 44 deletions

View file

@ -6,14 +6,14 @@
# By: rparodi <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2023/11/12 11:05:05 by rparodi #+# #+# #
# Updated: 2024/10/31 17:19:36 by rparodi ### ########.fr #
# Updated: 2024/10/31 18:17:13 by rparodi ### ########.fr #
# #
# **************************************************************************** #
# Variables
# Name
NAME=../build/libft.a
NAME = ../build/libft.a
# Commands
CC = cc
@ -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