14 lines
159 B
C
14 lines
159 B
C
|
#ifndef __MACROS__
|
||
|
#define __MACROS__
|
||
|
|
||
|
|
||
|
#define FAILURE -1
|
||
|
#define SUCCESS 0
|
||
|
#define FALSE 0
|
||
|
#define NO 0
|
||
|
#define TRUE 1
|
||
|
#define YES 1
|
||
|
|
||
|
|
||
|
#endif
|
||
|
|