Home | History | Annotate | Download | only in include

Lines Matching defs:BYTE

57 **				A null byte may be inserted here to make
68 ** byte-order, i.e., least-significant byte first.
71 ** matters. Terminfo format is a raw byte layout, not a structure
80 #undef BYTE
81 #define BYTE(p,n) (unsigned char)((p)[n])
83 #define IS_NEG1(p) ((BYTE(p,0) == 0377) && (BYTE(p,1) == 0377))
84 #define IS_NEG2(p) ((BYTE(p,0) == 0376) && (BYTE(p,1) == 0377))
85 #define LOW_MSB(p) (BYTE(p,0) + 256*BYTE(p,1))