Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/brd6/my_printf
- Owner: brd6
- Created: 2016-02-05T23:10:45.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-05-21T23:03:09.000Z (over 8 years ago)
- Last Synced: 2024-11-15T08:46:34.196Z (3 months ago)
- Topics: c, epitech, function-printf, printf
- Language: C
- Homepage:
- Size: 86.9 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/