diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-10-25 04:42:08 +0200 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-10-25 04:42:08 +0200 |
| commit | feb71e200972bb78fe86130629ef040ef80811a7 (patch) | |
| tree | 24b84b3f4937ab4eb930e1ad851494d8d49a9775 /printer.c | |
| parent | 1b4df01bfa793fe91a58192a4b79917909bf1614 (diff) | |
| download | ft_printf-feb71e200972bb78fe86130629ef040ef80811a7.tar.gz ft_printf-feb71e200972bb78fe86130629ef040ef80811a7.tar.bz2 ft_printf-feb71e200972bb78fe86130629ef040ef80811a7.zip | |
WIP: Added libft submodule, make ft_printf lib
Diffstat (limited to 'printer.c')
| -rw-r--r-- | printer.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -7,12 +7,6 @@ #define ITOA_HEX_LOWER(x) (ft_itoa_base(x, "0123456789abcdef")) #define ITOA_HEX_UPPER(x) (ft_itoa_base(x, "0123456789ABCDEF")) -void ft_putstr(char *str) -{ - while (*str) - write(STDOUT_FILENO, str++, 1); -} - char *convert_to_str(t_pformat *pformat, va_list ap) { char *str; |
