diff options
Diffstat (limited to 'README.txt')
| -rw-r--r-- | README.txt | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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" |
