-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.c
19 lines (17 loc) · 986 Bytes
/
utils.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: snpark <snpark@student.42seoul.kr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2021/07/12 11:02:06 by snpark #+# #+# */
/* Updated: 2021/07/12 11:02:07 by snpark ### ########.fr */
/* */
/* ************************************************************************** */
#include "fractol.h"
void error(char *message)
{
printf("Error %s\n", message);
exit(0);
}