Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 352 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 352 Bytes

ft_printf

Description

My implementation of the printf function.

Usage

int   ft_printf(char const *format, ...)

make will compile a libftprintf.a binary.

ft_printf works with :

  • Conversions : c s p d i u x X %
  • Flags : 0 * -
  • Minimum width
  • Precision .