/ft_printf

My own implementation of printf(A simpler version.) made for École42.

Primary LanguageC

Welcome to ft_printf 👋

🖨 Recreating printf function of C programming language


  • Status: Finished
  • Result: 104%

Install

git clone https://github.com/peguimasid/42-Printf ft_printf

Usage

  1. For including the function to your project, you just need to add the header #include "ft_printf.h".
#include "ft_printf.h"

int	main(void)
{
	ft_printf("Hello %d | %s", 42, "World!");
}

Run

make -s && cc main.c ./libft/libftprintf.a ./libft/libft && ./a.out && rm ./a.out && make -s fclean

Author

👤 Lohan Guedes

Show your support

Feel free to fork this project and send a pull request to it! I would love to see possible improvements ❤️‍🩹. Give a ⭐️ if this project helped you!