-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror_state.c
More file actions
20 lines (18 loc) · 1021 Bytes
/
error_state.c
File metadata and controls
20 lines (18 loc) · 1021 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* :::::::: */
/* error_state.c :+: :+: */
/* +:+ */
/* By: jsaariko <jsaariko@student.codam.nl> +#+ */
/* +#+ */
/* Created: 2020/02/05 15:02:01 by jsaariko #+# #+# */
/* Updated: 2020/03/05 18:17:39 by jsaariko ######## odam.nl */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
void error_state(char token, t_printf_arg **arg, va_list ap)
{
(void)token;
(void)(*arg);
(void)ap;
}