File: any.h

package info (click to toggle)
libclc 0.2.0%2Bgit20180917-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 3,552 kB
  • sloc: lisp: 13,186; ansic: 2,418; python: 647; cpp: 93; sh: 29; makefile: 10; pascal: 7
file content (16 lines) | stat: -rw-r--r-- 387 bytes parent folder | download | duplicates (24)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#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)