Please enable JavaScript to use RhodeCode Enterprise
Commit Description:
fix wrong merge
Commit Description:
fix wrong merge
'use strict' ;
function ZStream () {
/* next input byte */
this . input = null ; // JS specific, because we have no pointers
this . next_in = 0 ;
/* number of bytes available at input */
this . avail_in = 0 ;
/* total number of input bytes read so far */
this . total_in = 0 ;
/* next output byte should be put there */
this . output = null ; // JS specific, because we have no pointers
this . next_out = 0 ;
/* remaining free space at output */
this . avail_out = 0 ;
/* total number of bytes output so far */
this . total_out = 0 ;
/* last error message, NULL if no error */
this . msg = '' /*Z_NULL*/ ;
/* not visible by applications */
this . state = null ;
/* best guess about the data type: binary or text */
this . data_type = 2 /*Z_UNKNOWN*/ ;
/* adler32 value of the uncompressed data */
this . adler = 0 ;
}
module . exports = ZStream ;
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository permissions settings