-
Notifications
You must be signed in to change notification settings - Fork 0
/
events.c
31 lines (26 loc) · 1.09 KB
/
events.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
28
29
30
31
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* events.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: tdarchiv <tdarchiv@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2019/02/23 19:01:22 by tdarchiv #+# #+# */
/* Updated: 2019/03/06 20:02:49 by tdarchiv ### ########.fr */
/* */
/* ************************************************************************** */
#include "events.h"
#include "libft/libft.h"
#include <stdlib.h>
int expose_callback(void *param)
{
ft_puts("EXPOSE CALLBACK");
(void)param;
return (0);
}
int quit_event(void)
{
ft_puts("Bye");
exit(0);
return (0);
}