From 95670611b3636932b6e64c3e485a4e4bf40d8b07 Mon Sep 17 00:00:00 2001 From: Rudy Bousset Date: Sun, 2 Feb 2020 18:12:45 +0100 Subject: Norme again --- src/ft_key_events.c | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) (limited to 'src/ft_key_events.c') diff --git a/src/ft_key_events.c b/src/ft_key_events.c index 7b3cdf2..580bb17 100644 --- a/src/ft_key_events.c +++ b/src/ft_key_events.c @@ -1,37 +1,50 @@ +/* ************************************************************************** */ +/* LE - / */ +/* / */ +/* ft_key_events.c .:: .:/ . .:: */ +/* +:+:+ +: +: +:+:+ */ +/* By: rbousset +:+ +: +: +:+ */ +/* #+# #+ #+ #+# */ +/* Created: 2020/02/02 17:19:30 by rbousset #+# ## ## #+# */ +/* Updated: 2020/02/02 17:19:30 by rbousset ### #+. /#+ ###.fr */ +/* / */ +/* / */ +/* ************************************************************************** */ + #include #include #include static int -ft_w_key(void) + ft_w_key(void) { ft_printf("[W]\n"); return (0); } static int -ft_a_key(void) + ft_a_key(void) { ft_printf("[A]\n"); return (0); } static int -ft_s_key(void) + ft_s_key(void) { ft_printf("[S]\n"); return (0); } static int -ft_d_key(void) + ft_d_key(void) { ft_printf("[D]\n"); return (0); } int -ft_key_event(int keycode, void *param) + ft_key_event(int keycode, void *param) { int (*fun_ptr[4])(void); -- cgit v1.2.3