viewing paste yo2 | C

Posted on the
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
#ifndef FT_BOOLEAN_H
# define FT_BOOLEAN_H
 
# include <unistd.h>
 
# define TRUE       1
# define FALSE      0
# define SUCCESS    0
# define EVEN_MSG   "I have a pair number of arguments.\n"
# define ODD_MSG    "I have an impair number of arguments.\n"
# define EVEN(x)    (!((x) % 2))
 
typedef int t_bool;
 
#endif
Viewed 554 times, submitted by Guest.