This project aims to implement a printing function in C, following the norms and standards established by School 42.
The ft_print
function must meet the following specific requirements:
- Print text to the console.
- Manage the following format specifiers:
%c
,%s
,%p
,%d
,%i
,%u
,%x
, and%X
. - Handle the
0
and-
flags. - Control field width and precision during printing.
Este proyecto tiene como objetivo la implementación de una función de impresión en C, siguiendo las normas y estándares establecidos por la Escuela 42.
La función ft_print
debe cumplir con los siguientes requisitos específicos:
- Imprimir texto en la consola.
- Gestionar los siguientes especificadores de formato:
%c
,%s
,%p
,%d
,%i
,%u
,%x
y%X
. - Manejar las banderas
0
y-
. - Controlar el ancho de campo y la precisión durante la impresión.