OSDN Git Service
(root)
/
coroid
/
inqubus.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
TODO解消
[coroid/inqubus.git]
/
vhook
/
mydef.h
1
#ifndef MYDEF_H_
2
#define MYDEF_H_
3
4
/*追加Define*/
5
6
#define MAX(a,b) (((a)>(b))?(a):(b))
7
#define MIN(a,b) (((a)<(b))?(a):(b))
8
9
#define INTEGER_MAX INT32_MAX
10
#define INTEGER_MIN INT32_MIN
11
12
#define false (1!=1)
13
#define FALSE false
14
15
#define true (1==1)
16
#define TRUE true
17
18
#define null NULL
19
20
#endif /*MYDEF_H_*/