Function that prints arguments and data. Arguments type: c, s, %, d, i and b.
- _printf.c - File that contains: (1) the main function (int _printf(const char *format)), and (2) function pointer to array structure.
- _putchar.c - File that contains _putchar function which writes characters, one by one, to standard output.
- formatf.c - File that contains functions (for when arguments are type: c, s, %, i or d) pointed by function pointer define in structure struct formato (typedef fmt) on file holberton.h.
- formatf2.c - Same as formatf.c but for arguments types: b, u and o.
- holberton.h - Library with fucntions prototypes, and struct format (typedef fmt) that contains (1)pointer and (2)function pointer.
- main.c - In test directory. File to test _printf.c .
gcc -Wall -Werror -Wextra -pedantic *.c
- Santiago Peña
- Jorge Naranjo
- Holberton School
