https://github.com/simon-gardier/mini-libc
⚙️ Implementation of a small C standard library
https://github.com/simon-gardier/mini-libc
c-lang clanguage stdlib
Last synced: 9 months ago
JSON representation
⚙️ Implementation of a small C standard library
- Host: GitHub
- URL: https://github.com/simon-gardier/mini-libc
- Owner: simon-gardier
- Created: 2024-03-15T10:40:17.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-31T17:56:31.000Z (about 2 years ago)
- Last Synced: 2025-01-27T11:17:20.582Z (over 1 year ago)
- Topics: c-lang, clanguage, stdlib
- Language: C
- Homepage:
- Size: 51.8 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ⚙️ Mini C standard library


Implementation of a small standard library to work with strings and numbers.
C library done for the libft project of School 19.
## Content
- ./conversion : conversions functions from int to string and the other way around.
- ./memory : memory related functions, see the man page of the related functions.
- ./string : string related functions, see the man page of the related functions.
- ./miscellaneous :
- ft_printf : simplified version of standard printf.
- ft_get_next_line : file related function returning the next line of the file.
## Example
See `example.c` for some libft usage examples.
To compile and run the example :
```terminal
make
gcc example.c libft.a
./a.out
```
## Credits
- [Simon Gardier](https://github.com/simon-gardier)