https://github.com/brd6/my_printf2
https://github.com/brd6/my_printf2
c printf
Last synced: about 3 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/brd6/my_printf2
- Owner: brd6
- Created: 2016-07-31T12:16:32.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-31T13:00:03.000Z (almost 10 years ago)
- Last Synced: 2025-10-25T08:32:37.484Z (8 months ago)
- Topics: c, printf
- Language: C
- Homepage:
- Size: 578 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# my_printf2
This project is an improvement of the school project : https://github.com/brd6/EPITECH-my_printf with the addition of following features :
- my_sprintf
```
my_sprintf(char *str, const char *format, ...);
```
- my_snprintf
```
my_snprintf(char *str, size_t size, const char *format, ...);
```
- my_dprintf
```
my_dprintf(int fd, const char *format, ...);
```
- my_eprintf
```
my_eprintf(const char *format, ...);
```