pike.git/
src/
svalue.h
Branch:
Tag:
Non-build tags
All tags
No tags
1997-02-07
1997-02-07 01:36:15 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>
3495fe4be4cab805b6c5ec2139e78130015d2870 (
3
lines) (+
3
/-
0
)
[
Show
|
Annotate
]
Branch:
7.9
IS_UNDEFINED added
Rev: src/svalue.h:1.6
129:
#define is_gt(a,b) is_lt(b,a) #define IS_ZERO(X) ((X)->type==T_INT?(X)->u.integer==0:(1<<(X)->type)&(BIT_OBJECT|BIT_FUNCTION)?!svalue_is_true(X):0)
+
#define IS_UNDEFINED(X) ((X)->type==T_INT&&!(X)->u.integer&&(X)->subtype==1)
+
#define check_destructed(S) \ do{ \ struct svalue *_s=(S); \