Skip to content

Alphacharge/libft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

42 libft Project

This project contains a few simple clib functions to learn C coding.

This repo contains the project as required by the subject. If you need more functionality, take a look on my extended libft.

Installation

This project should compile under Mac OS and Unix:

git clone https://github.com/Alphacharge/libft.git
cd libft
make
include the generated static lib

Description

It contains following functions:

  • ft_atoi.c
  • ft_bzero.c
  • ft_calloc.c
  • ft_isalnum.c
  • ft_isalpha.c
  • ft_isascii.c
  • ft_isdigit.c
  • ft_isprint.c
  • ft_itoa.c
  • ft_lstadd_back.c
  • ft_lstadd_front.c
  • ft_lstclear.c
  • ft_lstdelone.c
  • ft_lstiter.c
  • ft_lstlast.c
  • ft_lstmap.c
  • ft_lstnew.c
  • ft_lstsize.c
  • ft_memchr.c
  • ft_memcmp.c
  • ft_memcpy.c
  • ft_memmove.c
  • ft_memset.c
  • ft_putchar_fd.c
  • ft_putendl_fd.c
  • ft_putnbr_fd.c
  • ft_putstr_fd.c
  • ft_split.c
  • ft_strchr.c
  • ft_strdup.c
  • ft_striteri.c
  • ft_strjoin.c
  • ft_strlcat.c
  • ft_strlcpy.c
  • ft_strlen.c
  • ft_strmapi.c
  • ft_strncmp.c
  • ft_strnstr.c
  • ft_strrchr.c
  • ft_strtrim.c
  • ft_substr.c
  • ft_tolower.c
  • ft_toupper.c