You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
387 B
17 lines
387 B
|
|
#define _CLC_ANY_DECL(TYPE) \
|
|
_CLC_OVERLOAD _CLC_DECL int any(TYPE v);
|
|
|
|
#define _CLC_VECTOR_ANY_DECL(TYPE) \
|
|
_CLC_ANY_DECL(TYPE) \
|
|
_CLC_ANY_DECL(TYPE##2) \
|
|
_CLC_ANY_DECL(TYPE##3) \
|
|
_CLC_ANY_DECL(TYPE##4) \
|
|
_CLC_ANY_DECL(TYPE##8) \
|
|
_CLC_ANY_DECL(TYPE##16)
|
|
|
|
_CLC_VECTOR_ANY_DECL(char)
|
|
_CLC_VECTOR_ANY_DECL(short)
|
|
_CLC_VECTOR_ANY_DECL(int)
|
|
_CLC_VECTOR_ANY_DECL(long)
|