An open API service indexing awesome lists of open source software.

https://github.com/brd6/my_printf2


https://github.com/brd6/my_printf2

c printf

Last synced: about 3 hours ago
JSON representation

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, ...);
```