Defines

ntz.h File Reference

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Defines

#define ntz(x)

Define Documentation

#define ntz (   x  ) 
Value:
( (1 & (((x) & 1) == 0))        \
        + (1 & (((x) & 3) == 0))        \
        + (1 & (((x) & 7) == 0))        \
        + (1 & (((x) & 017) == 0))      \
        + (1 & (((x) & 037) == 0))      \
        + (1 & (((x) & 077) == 0))      \
        + (1 & (((x) & 0177) == 0))     \
        + (1 & (((x) & 0377) == 0))     \
        + (1 & (((x) & 0777) == 0))     \
        + (1 & (((x) & 01777) == 0))    \
        + (1 & (((x) & 03777) == 0))    \
        + (1 & (((x) & 07777) == 0))    \
        + (1 & (((x) & 017777) == 0))   \
        + (1 & (((x) & 037777) == 0))   \
        + (1 & (((x) & 077777) == 0))   \
        + (1 & (((x) & 0177777) == 0)) )

Definition at line 36 of file ntz.h.