v1.0.2 normed includes, removed and swapped include mlx_functions file to mlx.h in minilibx-linux

This commit is contained in:
B.Goulard 2024-12-16 15:44:46 +01:00
parent e14340f124
commit 29b932b948
9 changed files with 43 additions and 336 deletions

View file

@ -6,11 +6,12 @@
/* By: bgoulard <bgoulard@student.42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/16 06:09:01 by bgoulard #+# #+# */
/* Updated: 2024/12/16 09:36:19 by bgoulard ### ########.fr */
/* Updated: 2024/12/16 15:34:31 by bgoulard ### ########.fr */
/* */
/* ************************************************************************** */
#ifndef FT_ADDONS_H
# define FT_ADDONS_H
# include <stdbool.h>
@ -19,14 +20,14 @@
/// @param value The value to check
/// @param min The lower bound
/// @param max The upper bound
/// @return true if the value is in the range, false otherwise
bool ft_inrange_ex(int value, int min, int max);
/// @return true if the value is in the range, false otherwise
bool ft_inrange_ex(int value, int min, int max);
/// @brief Says if a value is in a range including the bounds
/// @param value The value to check
/// @param min The lower bound
/// @param max The upper bound
/// @return true if the value is in the range, false otherwise
bool ft_inrange(int value, int min, int max);
bool ft_inrange(int value, int min, int max);
#endif