summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryctct <yctct>2026-01-28 12:52:45 +0100
committeryctct <yctct>2026-01-28 12:52:45 +0100
commit5489e51ddc8095c58406e0c65a8bc65900590fa3 (patch)
treef99abf0c82e1670999b980fcf9af5e2b0add7498
parenta5da886990495903e0c5be222469edd8e52b723a (diff)
Correct some mistake in README, add URL to repo
-rw-r--r--README.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/README.txt b/README.txt
index 07bc3a8..b30334b 100644
--- a/README.txt
+++ b/README.txt
@@ -4,12 +4,12 @@ ft_printf library
Description
----------
-This is a custom implementation of printf.
+This is a custom implementation of printf() glibc.
I wrote this implementation to carry on learning C and understand what printf
does, to an extend.
-This is implementation is concerned with the following specifiers only: c, s,
+This implementation is concerned with the following specifiers only: c, s,
i, d, u, x, X, p.
Instructions
@@ -17,8 +17,8 @@ Instructions
To clone the repository of this library run:
- $ git clone url directory_name
- $ cd directory_name
+ $ git clone https://git.yctct.com/ft_printf
+ $ cd ft_printf
To compile the library run:
@@ -36,11 +36,11 @@ To delete all object files and libft.a run:
$ make fclean
-Then to use the library, ft_printf.a, with a programme, say main.c, run:
+Then to use the library, libftprintf.a, with a programme, say main.c, run:
$ cc main.c libftprintf.a
-and append each of the c files with:
+and prepend each of the C files with:
#include "path/to/ft_printf.h"