-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.c
More file actions
20 lines (18 loc) · 1.02 KB
/
utils.c
File metadata and controls
20 lines (18 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* utils.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: apeposhi <apeposhi@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/06/16 14:49:24 by apeposhi #+# #+# */
/* Updated: 2023/06/25 17:33:33 by apeposhi ### ########.fr */
/* */
/* ************************************************************************** */
#include "include/so_long.h"
int ft_print_error(char *message, int r_value)
{
ft_putstr_fd("Error\n", 2);
ft_putstr_fd(message, 2);
return (r_value);
}