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

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

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