Skip to content

jmelnych/printf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Project Overview

An implementation of libc's printf function.

About ft_printf

The ft_printf function is prototyped as follows:

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

The function manage:

  • the flags #0-+, space and *
  • the following conversions: sSpdDioOuUxXcC and b to binary
  • %%
  • the minimum field-width
  • the precision
  • the flags hh, h, l, ll, j, z.

Usage

ft_printf("%s\n", "whatever");

About

An implementation of libc's printf function

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published