adagiox / ft_printf

A remake of printf in C

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ft_printf

A remake of printf in C.

int printf(const char *format, ...);

The format string is specified as follows:

%[flags][width][.precision][length][conversion specifier]

and is followed by a variable list of arguments to be printed to the standard output.

ft_printf handles:

  • Flags: #0-+ and space
  • Width
  • Precision
  • Length: hh, h, l, ll, j, and z
  • Conversions: sSpdDioOuUxXcC

About

A remake of printf in C


Languages

Language:C 98.0%Language:Makefile 2.0%