Skip to content

KianRistori/ft_printf

Repository files navigation

ft_printf

A custom implementation of the C printf() function.

Features

  • Supports these format specifiers:
    • %c (character)
    • %s (string)
    • %p (pointer, hexadecimal)
    • %d, %i (signed decimal)
    • %u (unsigned decimal)
    • %x (hexadecimal, lowercase)
    • %X (hexadecimal, uppercase)
    • %% (percent sign)

Usage

Link the libftprintf.a library and use:

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

About

Because ft_putnbr() and ft_putstr() aren’t enough

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published