diff options
Diffstat (limited to 'convert_written.c')
| -rw-r--r-- | convert_written.c | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/convert_written.c b/convert_written.c new file mode 100644 index 0000000..f2cdc2b --- /dev/null +++ b/convert_written.c @@ -0,0 +1,20 @@ +/* ************************************************************************** */ +/* */ +/* ::: :::::::: */ +/* convert_written.c :+: :+: :+: */ +/* +:+ +:+ +:+ */ +/* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ +/* +#+#+#+#+#+ +#+ */ +/* Created: 2019/10/30 23:38:28 by cacharle #+# #+# */ +/* Updated: 2019/10/30 23:59:05 by cacharle ### ########.fr */ +/* */ +/* ************************************************************************** */ + +#include <stdarg.h> +#include "header.h" + +char *convert_written(va_list ap, t_pformat *pformat) +{ + pformat->written = va_arg(ap, int*); + return (NULL); +} |
