diff options
Diffstat (limited to 'libft.h')
| -rw-r--r-- | libft.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -6,7 +6,7 @@ /* By: cacharle <marvin@42.fr> +#+ +:+ +#+ */ /* +#+#+#+#+#+ +#+ */ /* Created: 2019/10/07 09:45:02 by cacharle #+# #+# */ -/* Updated: 2019/11/20 04:13:10 by cacharle ### ########.fr */ +/* Updated: 2019/11/21 02:01:31 by cacharle ### ########.fr */ /* */ /* ************************************************************************** */ @@ -22,6 +22,9 @@ # define TRUE 1 # define FALSE 0 +#define MIN(x, y) ((x) < (y) ? (x) : (y)) +#define MAX(x, y) ((x) > (y) ? (x) : (y)) + typedef unsigned char t_byte; /* |
