Skip to content

itseugen/ft_printf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

ft_printf

My own version of the popular printf function

Coded in

It handles the following specifiers:

  • %c Prints a single character
  • %s Prints a string
  • %p Prints a (void *) pointer in hexadecimal format
  • %d Prints a decimal number
  • %i Prints an integer
  • %u Prints an unigned integer
  • %x Prints a number in lowercase hexadecimal
  • %X Prints a number in uppercase hexadecimal
  • %% Prints a percent sign

  • It also handles a single % with a missing identifier. Just like in the original printf it just skippes the '%' and continues afterwards.

This project is part of my studies at 42 Heilbronn

About

My own version of the popular printf function

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published