The main objective of this repository is to create the printf program from zero, for which we will follow various tasks step by step. This is a group assignment for the Holberton School Foundations course.
- Luis Escobedo
- Ronald Altamirano
Write a function that produces output according to a format. The format string is composed of zero or more directives. See man 3 printf for more detail. You need to handle the following conversion specifiers:
- c
- s
- %
Handle the following conversion specifiers:
- d
- i
- You dont have to handle the flag characters
- You dont have to handle field width
- You dont have to handle precision
- You dont have to handle the length modifiers
Create a man page for your function.
- man_3_printf