| ft_printf | |
|---|---|
| Prototype | int printf(const char *str, ...); |
| Description | ft_printf is a copy the fucntion printf fron Standard C Library |
| Libc functions | malloc(3), free, exit, write, functions of man 3 stdarg |
- Manage the following conversions:
s,S,p,d,D,i,o,O,u,U,x,X,cC - Manage
%% - Manage the flags
#,0,-,+space - Manage the minimum field-width
- Manage the precision
- Manage the flags
hh,h,l,ll,j,z.
ft_printf is part of the library libft
Romain Fibigr : rfibigr@student.42.fr