Skip to content
26 changes: 25 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,31 @@
# 0x10 - C - printf
---

## DESCRIPTION
First Holberton School group project in the Low Level Programming track.

#### Function prototype
```
int _printf(const char *format, ...);
```
#### Implemented format specifiers

| Specifier type | Description |
| --- | --- |
| c | Single character |
| s | String of characters |
| d or i | Signed decimal integer |
| b | Unsigned binary |
| u | Unsigned decimal integer |
| o | Unsigned octal |

#### Compilation and testing

We compiled via:
```
$ gcc -Wall -Werror -Wextra -pedantic *.c
```

We also have some tests in the `tests` folder. Feel free to suggest more.

## Authors
`Fernando González-Morales, Stefan Silverio`
32 changes: 0 additions & 32 deletions printf.1

This file was deleted.