Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/andreyvdl/42-libft
- Owner: andreyvdl
- Created: 2022-09-27T00:18:58.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-06-29T00:06:43.000Z (over 1 year ago)
- Last Synced: 2023-08-19T02:53:52.039Z (over 1 year ago)
- Topics: 42, 42saopaulo, c, libft, libft-42, libft42, makefile
- Language: C
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```