/* ************************************************************************** */ /* */ /* ::: :::::::: */ /* ft_init_bmp.c :+: :+: :+: */ /* +:+ +:+ +:+ */ /* By: rbousset +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2020/02/14 17:28:46 by rbousset #+# #+# */ /* Updated: 2020/02/14 17:28:46 by rbousset ### ########lyon.fr */ /* */ /* ************************************************************************** */ #include #include t_bmp ft_init_bmp(void) { t_bmp bmp; bmp.file_type = 0x4d42; bmp.file_size = 0; bmp.reserv_one = 0; bmp.reserv_two = 0; bmp.offset_data = 0; return (bmp); }