- It will manage the following conversions: cspdiuxX%
- It will manage any combination of the following flags: ’-0.*’ and minimum field width with all conversions
- Manage one or more of the following conversions: nfge
- Manage one or more of the following flags: l ll h hh
- Manage all the following flags: '# +' (yes, one of them is a space)
git clone https://github.com/niamu01/ft_printf
cd ft_printf
make [all, re, clean, fclean] #(Did not undertake the bonus section)make all: Compiles mandatory files and creates the libftprintf.a file.make re: Performs an incremental build.make clean: Removes object files.make fclean: Removes object files and the library file.
This project compiles various functions into a single library file and prevent relinking.
You can use the libftprintf.a file generated by make in another project
gcc -o my_program main.c -L/path/to/ft_printf -lftprintf💡 Ensure the
/path/to/ft_printfis replaced with the actual path to yourlibftprintf.afile.