diff options
author | Henry Stiles <henry.stiles@artifex.com> | 1999-05-24 20:03:13 +0000 |
---|---|---|
committer | Henry Stiles <henry.stiles@artifex.com> | 1999-05-24 20:03:13 +0000 |
commit | 5e99d00db40250c4aec92e2e7ecaf51f629540ae (patch) | |
tree | c59a16131c363a845609bb0786adc205d3f6fddc /gs/src/gsbittab.c | |
parent | 7ddfba499458819bf0dbf297b084f8b5b51b8690 (diff) | |
download | ghostpdl-5e99d00db40250c4aec92e2e7ecaf51f629540ae.tar.gz |
initial gs5.84 checkin with pcl and xl compiling.
git-svn-id: http://svn.ghostscript.com/ghostpcl/trunk/ghostpcl@857 06663e23-700e-0410-b217-a244a6096597
Diffstat (limited to 'gs/src/gsbittab.c')
-rw-r--r-- | gs/src/gsbittab.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gs/src/gsbittab.c b/gs/src/gsbittab.c index d8e6c15b4..ab23374fb 100644 --- a/gs/src/gsbittab.c +++ b/gs/src/gsbittab.c @@ -131,6 +131,15 @@ const byte *const byte_bit_run_length_neg[8] = byte_bit_run_length_2, byte_bit_run_length_1 }; +/* + * byte_acegbdfh_to_abcdefgh[acegbdfh] = abcdefgh, where the letters + * denote the individual bits of the byte. + */ +const byte byte_acegbdfh_to_abcdefgh[256] = +{ + bit_table_8(0, 0x80, 0x20, 0x08, 0x02, 0x40, 0x10, 0x04, 0x01) +}; + /* Some C compilers insist on having executable code in every file.... */ void gsbittab_dummy(void) |