This project is a recreation of the printf function from the standard C library. It returns the number of characters in the argument received and prints data. Man man_3_printf for more details.
gcc -Wall -Werror -Wextra -pedantic *.c
The following are Holberton's requirements.
- No more than 5 functions per file.
- Prototypes of all functions are in header
holberton.h. - All programs and functions were compiled with gcc 4.8.4 using flags
-Wall-Werror-Wextraand-pedantic.