raja-moukhass / libft

The aim of this project is to code a C library regrouping usual functions that you’ll be allowed to use in all your other projects.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Libft

N|Solid

Build Status

Libft The aim of this project is to code a C library regrouping usual functions that you’ll be allowed to use in all your other projects.

  • include it in your next projects.
  • Implementation of most used C functions.

Functions

those are the functions that's i made in my libft

function My implementation
atoi.c ft_atoi.c
bzero.c ft_bzero.c
isalnum.c ft_isalnum.c
isalpha.c ft_isalpha.c
isascii.c ft_isascii.c
isdigit.c ft_isdigit.c
isprint.c ft_isprint.c
itoa.c ft_itoa.c
memalloc.c ft_memalloc.c
memccpy.c ft_memccpy.c
memchr.c ft_memchr.c
memcmp.c ft_memcmp.c
memcpy.c ft_memcpy.c
memdel.c ft_memdel.c
memmove.c ft_memmove.c
memset.c ft_memset.c
putchar.c ft_putchar.c
putchar_fd.c ft_putchar_fd.c
putendl.c ft_putendl.c
putendl_fd.c ft_putendl_fd.c
putnbr.c ft_putnbr.c
putnbr_fd.c ft_putnbr_fd.c
putstr.c ft_putstr.c
putstr_fd.c ft_putstr_fd.c
strcat.c ft_strcat.c
strchr.c ft_strchr.c
strclr.c ft_strclr.c
strcmp.c ft_strcmp.c
strcpy.c ft_strcpy.c
strdel.c ft_strdel.c
strdup.c ft_strdup.c
strequ.c ft_strequ.c
striter.c ft_striter.c
striteri.c ft_striteri.c
strjoin.c ft_strjoin.c
strlcat.c ft_strlcat.c
strlen.c ft_strlen.c
strmap.c ft_strmap.c
strmapi.c ft_strmapi.c
strncat.c ft_strncat.c
strncmp.c ft_strncmp.c
strncpy.c ft_strncpy.c
strnequ.c ft_strnequ.c
strnew.c ft_strnew.c
strnstr.c ft_strnstr.c
strrchr.c ft_strrchr.c
strsplit.c ft_strsplit.c
strstr.c ft_strstr.c
strsub.c ft_strsub.c
strtrim.c ft_strtrim.c
tolower.c ft_tolower.c
toupper.c ft_toupper.c

Getting Started

Compiling

Run the following commands:

  • To compile
    • make
  • To remove objects:
    • make clean
  • To remove objects and binary file (program):
    • make fclean
  • To re-compile:
    • make re

About

The aim of this project is to code a C library regrouping usual functions that you’ll be allowed to use in all your other projects.


Languages

Language:C 98.2%Language:Makefile 1.8%