-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase_state.c
27 lines (24 loc) · 1.1 KB
/
base_state.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/* ************************************************************************** */
/* */
/* :::::::: */
/* base_state.c :+: :+: */
/* +:+ */
/* By: jsaariko <[email protected]> +#+ */
/* +#+ */
/* Created: 2020/02/05 15:01:56 by jsaariko #+# #+# */
/* Updated: 2020/03/05 18:17:19 by jsaariko ######## odam.nl */
/* */
/* ************************************************************************** */
#include "ft_printf.h"
void entry_state(char token, t_printf_arg **arg, va_list ap)
{
(void)token;
(void)(*arg);
(void)ap;
}
void exit_state(char token, t_printf_arg **arg, va_list ap)
{
(void)token;
(void)(*arg);
(void)ap;
}