Skip to content

vvaucoul/Ft_Printf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ft_Printf

Rewrite of the printf function.

Available Options

  • %c: Display character.
  • %s: Display string.
  • %d / %i: Display integer.
  • %u: Display unsigned integer.
  • %x / %X: Display hexadecimal number lowercase or uppercase.
  • %p: Display pointer address.
  • %%: Display % character.

##Attributes

  • +: Display spaces after argument.
  • -: Display spaces before argument.
  • 0: Fill size of zero by size - argument length.
  • .: Use precision.

Usage

  • Clone Repository
git clone https://github.com/vvaucoul/Ft_Printf && cd Ft_Printf
  • Compilation
make

Prototype

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors