summaryrefslogtreecommitdiff
path: root/psi/zfileio.c
Commit message (Collapse)AuthorAgeFilesLines
* Update postal address in file headersChris Liddell2023-04-041-3/+3
|
* Update copyright to 2021Chris Liddell2021-03-151-1/+1
|
* Update copyright to 2020Chris Liddell2020-04-101-1/+1
|
* Update source/header file copyright notice to 2019Chris Liddell2019-01-161-1/+1
|
* Update copyright notice with new head office address.Ken Sharp2018-01-301-3/+3
| | | | | | | | | Also update copyright dates. Remove gs_cmdl.ps as we no longer use it, and remove its entry from psfiles.htm. Remove xfonts.htm as this feature (xfont support) is long, long gone.
* Bug 696937: readhexstring handle signed/unsigned charChris Liddell2016-07-201-2/+2
| | | | | | | | | | | | | | | | | | | When readhexstring runs out of data, we overload an integer ref with the number of bytes from the input buffer used, and the value of a trailing odd numbered byte shifted to the top 8 bits of the integer value. If no trailing byte was read, the value is set to -1. When restarting readhexstring with a full buffer, we relied on casting to char to retrieve the signed value from the top 8 bits on the integer ref. Unfortunately, unqualified chars are not signed on all platforms, and on platforms where chars are unsigned, we ended up with an invalid value. So, have the casting use qualified (signed/unsigned) chars for writing and reading back the value. To make this neater, and consistent, add an "schar" type to match the existing "uchar" type.
* Commit of build_consolidation branchChris Liddell2015-07-201-0/+986
Squashed into one commit (see branch for details of the evolution of the branch). This brings gpcl6 and gxps into the Ghostscript build system, and a shared set of graphics library object files for all the interpreters. Also, brings the same configuration options to the pcl and xps products as we have for Ghostscript.