Giter Site home page Giter Site logo

libft's Introduction

42 Libft

Libft is an individual project at 42 that requires us to re-create some standard C library functions including some additional ones that can be used later to build a library of useful functions for the rest of the program.

Disclaimer: Reinventing the wheel is bad, 42 makes us do this just so we can have a deeper understanding of data structures and basic algorithms. At 42 we're not allowed to use some standard libraries on our projects, so we have to keep growing this library with our own functions as we go farther in the program.

โš ๏ธ Warning: Don't copy/paste code you don't understand: it's bad for you, and for the school.

About the project

According to project's pdf there should be 4 sections:

  1. Libc Functions: Some of the standard C functions.
  2. Additional functions: Functions 42 deems will be useful for later projects.
  3. Bonus Functions: Functions 42 deems will be useful for linked list manipulation.
  4. Personal Functions: Functions I believe will be useful later.

However, I've decided reorganize and combined functions to several folders:

  1. chars: Basic functions to work with char type
  2. memory: Memory operations(allocation, freeing etc.)
  3. output: Functions for printing output (except for ft_printf)
  4. list: Functions for manipulations with linked lists.
  5. strings: Part of <string.h> functions and addition functions which I deemed useful to work with string.

My code is not the best, but it passed all the 42 tests successfully and I successfully used in my other 42 projects.

Note

  • Most of the the files and function names are namespaced with an ft in front. It stands for Forty Two
  • The project instructions require that we put all the source files in the root directory but for the sake of this Github repo, I separate them into sub folders.

How does libft work?

The goal is to create a library called libft.a from the source files so I can later use that library from other projects at 42.

To create that library, after downloading/cloning this project, cd into the project and call make:

$ git clone https://github.com/42YerevanProjects/42_Libft.git
$ cd 42_Libft
$ make

You should see a libft.a file and some object files (.o).

That's it! If you're having some problems with the code, just create an issue. I'll definitely check it out. If you're 42 student fill free to message me on discord.

Resources

You can find some links and books below that might be useful during the project. You can find all the books in resources folder. Note that you do not have to read the books completly but you will find a lot of useful information there.

Books

Videos

Links

Additional information

In order to use this library it should be compiled by the Makefile of the project that is going to use the library. Make sure to implement make file correctly.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.