Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 362 Bytes

File metadata and controls

20 lines (14 loc) · 362 Bytes

ft_printf

Description

You have to rewrite the famous printf function.

Usage

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

make will compile a libftprintf.a binary.

ft_printf works with :

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