Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 1023 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 1023 Bytes

Libft for 42

🎉🥳 All tests passed! 🥳🎉

What is it?

Libft is a project at 42 that consists in recoding a set of C standard library functions, as well as other utility functions that will be useful for future projects.

How to use it?

To use the library, you need to compile it first. To do so, run make in the root directory of the project. This will create a libft.a archive. You can then link it to your project with the -L and -l flags. For example, if your project is in a directory called my_project, you can compile it with gcc -L my_project/libft -lft my_project/*.c.

Subject file

The subject file is available here (subject is in french, I haven't find the english version...).

Todo

  • Basic functions
  • Bonus functions
  • Support Makefile for Windows
  • Reorganize files
  • Reformat code in my proper style
  • Add definitions to each functions
  • Do cool stuff 🙃