Cr1sPet / Printf

Recoding C standard printf function

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FT_PRINTF

SUBJECT

  • The aim of this project is to recode printf.

The following transformations were implemented:

  • %c Prints a single character.
  • %s Prints a string (as defined by the common C convention).
  • %p The void * pointer argument has to be printed in hexadecimal format.
  • %d Prints a decimal (base 10) number.
  • %i Prints an integer in base 10.
  • %u Prints an unsigned decimal (base 10) number.
  • %x Prints a number in hexadecimal (base 16) lowercase format.
  • %X Prints a number in hexadecimal (base 16) uppercase format.
  • %% Prints a percent sign.

All combinations of the following flags have been implemented :

  • ’-0.’, ’# +’

Clone project

git clone git@github.com:CrsPet/my_printf.git

The project is written in strict accordance with Norminette codestyle

About

Recoding C standard printf function


Languages

Language:C 95.3%Language:Makefile 4.7%