From 5489e51ddc8095c58406e0c65a8bc65900590fa3 Mon Sep 17 00:00:00 2001 From: yctct Date: Wed, 28 Jan 2026 12:52:45 +0100 Subject: Correct some mistake in README, add URL to repo --- README.txt | 12 ++++++------ 1 file 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" -- cgit v1.2.3