Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/brd6/my_printf

This project consists of rewriting the printf function of the C library
https://github.com/brd6/my_printf

c epitech function-printf printf

Last synced: 17 days ago
JSON representation

This project consists of rewriting the printf function of the C library

Awesome Lists containing this project

README

        

This project consists of rewriting the printf function of the C library

### Usage :
```
my_printf("format", ...);
```

### Format :
```
%[flags][width][.precision][length]specifier
```

### Examples :

See examples in the test directory.


for more detail about the function printf, see : man printf or http://www.cplusplus.com/reference/cstdio/printf/