-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKO_bonus.c
19 lines (17 loc) · 967 Bytes
/
KO_bonus.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* KO.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: sanglee2 <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/05/29 22:28:04 by sanglee2 #+# #+# */
/* Updated: 2023/05/29 22:28:44 by sanglee2 ### ########.fr */
/* */
/* ************************************************************************** */
#include "push_swap_bonus.h"
void KO()
{
write(1, "KO\n", 3);
exit(1);
}