aboutsummaryrefslogtreecommitdiffstats
path: root/src/ft_exit.c
blob: 5a4ef73ba4a2e4f2ef6531b4b4137a0a29e36f19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <libft.h>
#include <stdlib.h>
#include <inttypes.h>

int
ft_exit(uint8_t exit_code)
{
	ft_printf("Exiting program\n");
	if (exit_code < 0 || exit_code > 0)
		ft_printf("Exit code: %hhu\n", exit_code);
	exit(exit_code);
	return (0);
}