inlib  1.2.0
Classes | Namespaces | Defines | Functions
/Users/barrand/private/dev/softinex/old/inexlib-1.2/inlib/inlib/rroot/key File Reference
#include "rbuf"
#include "seek"
#include "date"
#include "ifile"
#include <map>
#include <ostream>
Include dependency graph for key:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  inlib::rroot::key

Namespaces

namespace  inlib
 

manipulations that induces other includes : ///////////


namespace  inlib::rroot

Defines

#define inlib_rroot_key

Functions

void csz__Init_Inflate (long, unsigned char *, long, unsigned char *)
int csz__Inflate ()
unsigned char * csz__obufptr ()

Define Documentation

#define inlib_rroot_key

Definition at line 5 of file key.


Function Documentation

int csz__Inflate ( )

Definition at line 1083 of file inflate.c.

{
  int e;                /* last block flag */
  int r;                /* result code */
  unsigned h;           /* maximum struct huft's malloc'ed */


  /* initialize window, bit buffer */
  wp = 0;
  bk = 0;
  bb = 0;


  /* decompress until the last block */
  h = 0;
  do {
    hufts = 0;
    if ((r = csz__Inflate_block(&e)) != 0)
      return r;
    if (hufts > h)
      h = hufts;
  } while (!e);


  /* flush out slide */
  FLUSH(wp);


  /* return success */
  Trace((stderr, "\n%lu bytes in Huffman tables (%lu/entry)\n",
         h * sizeof(struct huft), sizeof(struct huft)));
  return 0;
}
void csz__Init_Inflate ( long  ,
unsigned char *  ,
long  ,
unsigned char *   
)

Definition at line 1130 of file inflate.c.

                                                              {
  ibufcnt = a_ibufcnt;
  ibufptr = a_ibufptr;

  obufcnt = a_obufcnt;
  obufptr = a_obufptr;
}
unsigned char* csz__obufptr ( )

Definition at line 1138 of file inflate.c.

{return obufptr;}
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Defines