aboutsummaryrefslogtreecommitdiff
path: root/convert_written.c
blob: f2cdc2bc5c2d0aa66093584b5ef99c074aa4b8c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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);
}