Skip to content

Latest commit

 

History

History
70 lines (51 loc) · 2.01 KB

File metadata and controls

70 lines (51 loc) · 2.01 KB

42 - FT_PRINTF

Because putnbr and putstr aren’t enough

Subject


Features

  • This project is a custom implementation of the printf function in C
  • Handles specifiers: %c, %s, %d, %i, %u, %x, %X, %p, and %%.

Specifier Description Base
%c Single character --
%s String --
%d Decimal number Decimal
%i Integer Decimal
%u Unsigned Integer Decimal
%x Lowercase number Hexadecimal
%X Uppercase number Hexadecimal
%p Pointer - Memory addr Hexadecimal
%% Percent sign --

Project Structure


Compilation libftprintf.a

To compile the library, simply run the make command:

make

make bonus make clean make fclean make re


Disclaimer

At 42 School, most projects must comply with the Norm.