https://github.com/scisamir/printf
0x11. C - printf
https://github.com/scisamir/printf
c c-printf variadic-functions
Last synced: 6 months ago
JSON representation
0x11. C - printf
- Host: GitHub
- URL: https://github.com/scisamir/printf
- Owner: scisamir
- Created: 2023-06-23T09:01:37.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-06-29T19:03:09.000Z (over 2 years ago)
- Last Synced: 2025-02-23T22:21:12.068Z (10 months ago)
- Topics: c, c-printf, variadic-functions
- Language: C
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# C - printf
## A project to imitate the standard printf Function
This is a custom implementation of the **'printf'** function which handles the following specifiers:
> %s for printing strings.
> '%c' for printing characters.
> '%%' for printing a literal 'character'.
> '%d' and '%i'for printing signed integers.
## Basic Features
* The custom **'printf'** function print to standard output.
* It returns the total number of characters printed.
* it handles the specifiers **'%d', '%c', '%i', '%s' and '%%'**.
## Additional Features
* It handles conversion of unsigned int to binary
* It handles the printing of strings in reverse
* It handles rot13'ed string