-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkeyword.c
24 lines (22 loc) · 1.01 KB
/
keyword.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* keyword.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jmoiroux <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2014/06/13 11:29:34 by jmoiroux #+# #+# */
/* Updated: 2014/06/13 11:29:39 by jmoiroux ### ########.fr */
/* */
/* ************************************************************************** */
#include "glide.h"
void keyboard(unsigned char touche, int x, int y)
{
(void)x;
(void)y;
while (42)
{
if (touche == 'q')
exit(0);
}
}