Recreation of the ubiquitous printf function
I completed this project as a part of the curriculum at 42School Fremont
- This project is dependent on my library: libft
- Typing
make rewill compile the library: libftprintf.a - To test the code
- Clone dependency libft (mentioned above) 'make' that code
- Create a test main function. Compile the test main function and include the header and library files for both libft and printf.
- Compile statement should look something like this:
- gcc test_main -I libft.h ftprintf.h -L. libft.a libftprintf.a