Skip to content
Snippets Groups Projects
  1. Jan 15, 2017
  2. Jan 03, 2017
  3. Jan 02, 2017
  4. Jan 01, 2017
  5. Dec 31, 2016
  6. Dec 30, 2016
  7. Dec 05, 2016
  8. Dec 04, 2016
    • Mark Adler's avatar
      Create z_size_t and z_ssize_t types. · ca50ebd4
      Mark Adler authored
      Normally these are set to size_t and ssize_t. But if they do not
      exist, then they are set to the smallest integer type that can
      contain a pointer. size_t is unsigned and ssize_t is signed.
      ca50ebd4
    • Mark Adler's avatar
      Don't need to emit an empty fixed block when changing parameters. · c5ee34c2
      Mark Adler authored
      gzsetparams() was using Z_PARTIAL_FLUSH when it could use Z_BLOCK
      instead. This commit uses Z_BLOCK, which avoids emitting an
      unnecessary ten bits into the stream.
      c5ee34c2
    • Mark Adler's avatar
      Clean up gz* function return values. · 123f9cfa
      Mark Adler authored
      In some cases the return values did not match the documentation,
      or the documentation did not document all of the return values.
      gzprintf() now consistently returns negative values on error,
      which matches the behavior of the stdio fprintf() function.
      123f9cfa
Loading