diff options
| author | Charles <sircharlesaze@gmail.com> | 2019-10-31 01:45:37 +0100 |
|---|---|---|
| committer | Charles <sircharlesaze@gmail.com> | 2019-10-31 01:45:37 +0100 |
| commit | 0f6cd15b0c7ce2d4d0154ae027985ed640cd543f (patch) | |
| tree | b30dc09db7e42b1e1e9924995b608ee153daddc5 /printer.c | |
| parent | d63d6916249f5b40b81097854d8ca2c9d4d7d071 (diff) | |
| download | ft_printf-0f6cd15b0c7ce2d4d0154ae027985ed640cd543f.tar.gz ft_printf-0f6cd15b0c7ce2d4d0154ae027985ed640cd543f.tar.bz2 ft_printf-0f6cd15b0c7ce2d4d0154ae027985ed640cd543f.zip | |
Handle 'n' flag
Diffstat (limited to 'printer.c')
| -rw-r--r-- | printer.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -6,7 +6,7 @@ /* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/28 23:19:24 by cacharle #+# #+# */ -/* Updated: 2019/10/30 23:30:58 by cacharle ### ########.fr */ +/* Updated: 2019/10/30 23:56:21 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -57,6 +57,8 @@ char *convert_type(va_list ap, t_pformat *pformat) return (convert_hex(ap, pformat)); if (pformat->type == '%') return (convert_percent(ap, pformat)); + if (pformat->type == 'n') + return (convert_written(ap, pformat)); return (NULL); } |
