Skip to content

glllcs/libft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

This is my own C library, where I've re-code some of C functions and some others not natives but also useful ones. To do so, I only used the functions malloc, write and free, when necessary.

functions list

  • memset
  • bzero
  • memcpy
  • memccpy
  • memmove
  • memchr
  • memcmp
  • strlen
  • strlcpy
  • strlcat
  • strchr
  • strrchr
  • strnstr
  • strncmp
  • atoi
  • isalpha
  • isdigit
  • isalnum
  • isascii
  • isprint
  • toupper
  • tolower
  • calloc
  • strdup
  • substr
  • strjoin
  • strtrim
  • split
  • itoa
  • strmapi
  • putchar_fd
  • putstring_fd
  • putendl_fd
  • putnbr_fd
  • lstnew
  • lstadd_front
  • lst_size
  • lstlast
  • lstadd_back
  • lstdelone
  • lst_clear
  • lstiter
  • lstmap

libft_universe