-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.c
26 lines (23 loc) · 1.06 KB
/
main.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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lpaulo-m <lpaulo-m@student.42sp.org.br> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2022/02/25 10:34:20 by lpaulo-m #+# #+# */
/* Updated: 2022/08/23 22:41:39 by lpaulo-m ### ########.fr */
/* */
/* ************************************************************************** */
#include <netmon.h>
static void handle_keypresses(void)
{
while (true)
handle_key();
}
int main(int argc, char **argv)
{
initialize(argc, argv);
handle_keypresses();
exit(EXIT_SUCCESS);
}