v1.0.2 normed includes, removed and swapped include mlx_functions file to mlx.h in minilibx-linux
This commit is contained in:
parent
e14340f124
commit
29b932b948
9 changed files with 43 additions and 336 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue