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

https://github.com/thegirlsynth/printf

This is a repository for my first group project in ALX School.
https://github.com/thegirlsynth/printf

Last synced: 3 months ago
JSON representation

This is a repository for my first group project in ALX School.

Awesome Lists containing this project

README

        

# printf

## Description

This is a team project that demonstrates a pseudo-recreation of the C standard library function, `printf`.

## Usage
* The function `_printf` writes output to standard output, according to a given format.
* Upon successful return, `_printf` returns the number of characters printed (excluding the terminating null byte used to end output to strings). If an error is encountered, the function returns `-1`.

Prototype:
`int _printf(const char *format, ...);

##Authors:
* Cynthia Uche <[thegirlSynth](https://github.com/thegirlSynth)>
* Omniah Arafah <[omniah7](https://github.com/omniah7)>