Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/teresa-chow/42-libft-extended
This is my current extended version of Libft, the first project of the Common Core curriculum at 42. It currently includes a simplified recoded version of printf (ft_printf) and get_next_line.
https://github.com/teresa-chow/42-libft-extended
42 42born2code 42cursus 42porto 42school
Last synced: 8 days ago
JSON representation
This is my current extended version of Libft, the first project of the Common Core curriculum at 42. It currently includes a simplified recoded version of printf (ft_printf) and get_next_line.
- Host: GitHub
- URL: https://github.com/teresa-chow/42-libft-extended
- Owner: teresa-chow
- License: other
- Created: 2024-03-29T14:28:52.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-04-28T13:19:54.000Z (7 months ago)
- Last Synced: 2024-04-28T14:30:01.808Z (7 months ago)
- Topics: 42, 42born2code, 42cursus, 42porto, 42school
- Language: C
- Homepage:
- Size: 32.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Libft (extended)
[![42 School: n.a.](https://img.shields.io/badge/42%20School-n.a.-%2315bbbb)](https://www.42network.org/)_This is my current extended version of Libft, the first project of the Common Core curriculum at 42. It currently includes a simplified recoded version of printf (ft_printf) and get_next_line._
___# 💡 Additional info
For more information, please refer to:
- [libft](https://github.com/teresa-chow/42-libft)
- [ft_printf](https://github.com/teresa-chow/42-ft_printf)
- [get_next_line](https://github.com/teresa-chow/42-get_next_line)## Makefile rules
Command | Purpose
--|--
`make` | to compile libft
`make clean` | to clean the working directory of object files `*.o`
`make fclean` | to clean the working directory of object and archive files `*.o` / `*.a`
`make re` | to clean and re-compile___
### License
This work is published under the terms of [42 Unlicense](./LICENSE).[⬆ back to top](#libft-extended)