https://github.com/pmerku/custom_libc
Personal version of some C/CPP libraries
https://github.com/pmerku/custom_libc
asm c cpp
Last synced: 3 months ago
JSON representation
Personal version of some C/CPP libraries
- Host: GitHub
- URL: https://github.com/pmerku/custom_libc
- Owner: pmerku
- License: gpl-3.0
- Created: 2020-02-19T16:12:10.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2022-04-18T20:15:13.000Z (over 4 years ago)
- Last Synced: 2026-01-12T22:34:01.064Z (6 months ago)
- Topics: asm, c, cpp
- Language: C++
- Homepage: https://pmerku.github.io/custom_libc
- Size: 347 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Custom_libc
Reimplementation of some C/CPP standard functions and templates
##### Link to documentation: https://pmerku.github.io/custom_libc
### List of functions to add:
### ft_stdlib.h
- `ft_atoi_base`
- `ft_atol` | `ft_atoll`
- `ft_atol_base` | `ft_atoll_base`
### ft_unistd.h
- `ft_putnbr_fd_base`
### ft_libft.h
- `ft_ltoa` | `ft_lltoa`
- `ft_ltoa_base` | `ft_lltoa_base`
### Building the library
```
mkdir cmake
cmake .. && make
```
To test the library run `make test`.
(Sidenote: Most of the functions aren't present in the unit test
and some documentation is missing, just use the standard libraries :P)
### Contribute
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.