8000 GitHub - circulosmeos/gzindex: Mark Adler's GzIndex Gzip Indexer
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Mark Adler's GzIndex Gzip Indexer

Notifications You must be signed in to change notification settings

circulosmeos/gzindex

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

gzindex

Mark Adler's GzIndex Gzip Indexer

This is a thing i found at https://stackoverflow.com/a/54602723

Function Parameters Description Callee(s) Caller(s)
main int argc, char **argv The main function that processes command-line arguments and executes tasks. gzindex, gzunindex, gzextract -
gzindex char *name, size_t span Creates an index for the specified gzip file. index_point main
gzunindex char *name Removes an index from the specified gzip file. - main
gzextract char *name, off_t start, off_t end Extracts data from the specified gzip file using its index. index_open, index_entry, abort main
index_point gzFile file, size_t span, off_t bits Creates an index entry point for a gzip file. - gzindex
index_open char *name Opens an indexed gzip file for reading. - gzextract
index_entry gzFile file, off_t *start, off_t *end Retrieves the start and end offsets of an indexed gzip file entry. - gzextract
abort char *msg, int ret Outputs an error message and exits the program with the specified status. - gzextract

About

Mark Adler's GzIndex Gzip Indexer

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 100.0%
0