Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/markjso/ft_printf

Recode the original printf function in C using variadic functions.
https://github.com/markjso/ft_printf

Last synced: 1 day ago
JSON representation

Recode the original printf function in C using variadic functions.

Awesome Lists containing this project

README

        

# ft_printf
The C library function int printf(const char *format, ...) sends formatted output to stdout.

#### Parameters

format: The format argument is a string containing C language conversion specifications. The conversion specification specifies the notation, alignment, significant digits, field width, and other aspects of the output format. To represent non-printing characters, such as newlines and tabs, the format string may contain escape characters.

argument-list: Depending on the format string, the function may require additional arguments.

If successful, the total number of characters written is returned. On failure, a negative number is returned.