8000 GitHub - niamu01/libft: 📚 My very first own library
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

niamu01/libft

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Libft

📚 My very first own library

This project aims to recreate some standard C library functions and introduce additional ones that can be utilized to build a library of useful functions for the program.

Technologies Used

C MAKEFILE

Subject

Mandatory

Recreating select functions from the libc library.

Bonus

Creating functions for utilizing linked lists.

Getting Started

git clone https://github.com/niamu01/libft
cd libft
make [all, re, clean, fclean, bonus]
  • make all: Compiles mandatory files and creates the libft.a file.
  • make re: Performs an incremental build.
  • make clean: Removes object files.
  • make fclean: Removes object files and the library file.
  • make bonus: Builds, including bonus functions in the library.

This project compiles various functions into a single library file and prevent relinking.

How To Use

You can use the libft.a file generated by make in another project

Example:

gcc -o my_program my_source.c -L/path/to/libft -lft

💡 Ensure the /path/to/libft is replaced with the actual path to your libft.a file.

About

📚 My very first own library

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0