Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 702 Bytes

File metadata and controls

30 lines (21 loc) · 702 Bytes

ft_printf

📚 Overview

This project is a reimplementation of the C standard library function printf. The goal is to create your own version that handles basic formatting.

✅ Supported Format Specifiers

  • %c – character
  • %s – string
  • %p – pointer (address)
  • %d / %i – signed integer
  • %u – unsigned integer
  • %x / %X – hexadecimal (lower/upper)
  • %% – literal percent sign

🧪 Compilation

cc -Wall -Wextra -Werror ft_printf.c ft_utils.c main.c

📁 Files

  • ft_printf.c
  • ft_utils.c
  • ft_printf.h

👤 Author

Created and maintained by Martin Justa as part of the 42 school curriculum.