Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andreyvdl/42-libft

My libft project
https://github.com/andreyvdl/42-libft

42 42saopaulo c libft libft-42 libft42 makefile

Last synced: 1 day ago
JSON representation

My libft project

Awesome Lists containing this project

README

        





___
Program name | Files to turn in | Makefile rules | External Functions | Result
--- | --- | --- | --- | ---
libft.a | Makefile, libft.h, *.c, | NAME, all, clean, fclean, re, (bonus) | malloc, free, write | 125/100%

## Objective

> Write your own library: a collection of functions that will be a useful tool for your cursus.

## How to execute

```sh
make
```
or
```sh
make bonus
```

Now you have a file called `libft.a`, use any funuction of the libft and compile you code with the archive.
```sh
gcc | cc | clang [flags] c_program.c libft/libft.a
```