fuck the bullshit it's time to throw down

pull/893/head
nick black 4 years ago committed by Nick Black
parent 70c87f94db
commit 3b76db1166

@ -17,9 +17,11 @@ enum ncendianness_t {
// Sprinkle parentheses of salt and recite the ancient incantation...
#ifdef __BIG_ENDIAN__
enum { NC_ENDIANNESS = NC_BIGENDIAN };
#define NC_LITTLEENDIAN 0
#else
#ifdef __LITTLE_ENDIAN__
enum { NC_ENDIANNESS = NC_LITENDIAN };
#define NC_LITTLEENDIAN 1
#else
#ifdef BSD
#include <sys/endian.h>
@ -28,8 +30,10 @@ enum { NC_ENDIANNESS = NC_LITENDIAN };
#endif
#if __BYTE_ORDER == __BIG_ENDIAN
enum { NC_ENDIANNESS = NC_BIGENDIAN };
#define NC_LITTLEENDIAN 0
#elif __BYTE_ORDER == __LITTLE_ENDIAN
enum { NC_ENDIANNESS = NC_LITENDIAN };
#define NC_LITTLEENDIAN 1
#else
#error "Couldn't determine endianness"
#endif

@ -587,30 +587,21 @@ API void cell_release(struct ncplane* n, cell* c);
// We want the 2 bytes at the highest address of a 32-bit word, so that the
// octet adjacent to g->clusters is left undisturbed as zero.
#ifdef NC_BIGENDIAN
#define NCSTYLE_MASK 0x0000fffful
#define NCSTYLE_STANDOUT 0x00000080ul
#define NCSTYLE_UNDERLINE 0x00000040ul
#define NCSTYLE_REVERSE 0x00000020ul
#define NCSTYLE_BLINK 0x00000010ul
#define NCSTYLE_DIM 0x00000008ul
#define NCSTYLE_BOLD 0x00000004ul
#define NCSTYLE_INVIS 0x00000002ul
#define NCSTYLE_PROTECT 0x00000001ul
#define NCSTYLE_ITALIC 0x00000100ul
#ifdef NC_LITTLEENDIAN
#define NCSTYLE_MASK (0x0000fffful << (16u * !NC_LITTLEENDIAN))
#define NCSTYLE_STANDOUT (0x00000080ul << (16u * !NC_LITTLEENDIAN))
#define NCSTYLE_UNDERLINE (0x00000040ul << (16u * !NC_LITTLEENDIAN))
#define NCSTYLE_REVERSE (0x00000020ul << (16u * !NC_LITTLEENDIAN))
#define NCSTYLE_BLINK (0x00000010ul << (16u * !NC_LITTLEENDIAN))
#define NCSTYLE_DIM (0x00000008ul << (16u * !NC_LITTLEENDIAN))
#define NCSTYLE_BOLD (0x00000004ul << (16u * !NC_LITTLEENDIAN))
#define NCSTYLE_INVIS (0x00000002ul << (16u * !NC_LITTLEENDIAN))
#define NCSTYLE_PROTECT (0x00000001ul << (16u * !NC_LITTLEENDIAN))
#define NCSTYLE_ITALIC (0x00000100ul << (16u * !NC_LITTLEENDIAN))
#define NCSTYLE_NONE 0
#else
#define NCSTYLE_MASK 0xffff0000ul
#define NCSTYLE_STANDOUT 0x00800000ul
#define NCSTYLE_UNDERLINE 0x00400000ul
#define NCSTYLE_REVERSE 0x00200000ul
#define NCSTYLE_BLINK 0x00100000ul
#define NCSTYLE_DIM 0x00080000ul
#define NCSTYLE_BOLD 0x00040000ul
#define NCSTYLE_INVIS 0x00020000ul
#define NCSTYLE_PROTECT 0x00010000ul
#define NCSTYLE_ITALIC 0x01000000ul
#error "Groping blindly through an uncaring universe, I know not my endianness"
#endif
#define NCSTYLE_NONE 0
// Set the specified style bits for the cell 'c', whether they're actively
// supported or not.

Loading…
Cancel
Save