Skip to content

Commit

Permalink
chore: update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
hde-oliv committed Sep 19, 2023
1 parent fdc304f commit 37acc46
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# ft_printf

## What it is
This project consists of a basic copy of libc's printf.
## What is it?
A simple reimplementation of C function [printf](https://en.wikipedia.org/wiki/Printf).

Succeeded with 100%
**Succeeded with 100%**

## Skills
- Algorithms & AI
Expand All @@ -12,7 +12,9 @@ Succeeded with 100%


## Features
It only handles basic format tags: c, s, p, d, i, u, x, X and %. Any other tag will be outputted as is. (Flags too!)
It only handles the following format tags: c, s, p, d, i, u, x, X and %.
Any other tag will be outputted as is (including flags).

### Examples:
```c
ft_printf("%c", 'a'); --> 'a'
Expand All @@ -22,9 +24,9 @@ ft_printf("%f"); --> '%f'
```
## How to use it
Requisites:
Requirements:
```shell
clang
sudo apt install clang
```

Clone the repository and run:
Expand All @@ -39,4 +41,5 @@ The library is generated on the file libftprintf.a.
## Found any bug?
Feel free to contact me or create an issue!

###### Licensed under GPLv3
## License
This project is licensed under the GNU General Public License v3.0 - see the [COPYING](https://github.com/hde-oliv/ft_printf/blob/master/COPYING) file for details.

0 comments on commit 37acc46

Please sign in to comment.