-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmain.c
25 lines (22 loc) · 1 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
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* main.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: ncarvalh <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/06/01 21:43:38 by ncarvalh #+# #+# */
/* Updated: 2023/06/17 14:37:47 by ncarvalh ### ########.fr */
/* */
/* ************************************************************************** */
#include <stdio.h>
void hello(void);
void bye(void);
void highfive(void);
int main()
{
hello();
highfive();
bye();
return 0;
}