Skip to content

kllaster/printf

Repository files navigation

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 .