File: bgzip.h

package info (click to toggle)
segemehl 0.3.4-5
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,024 kB
  • sloc: ansic: 35,270; makefile: 43; sh: 37
file content (19 lines) | stat: -rw-r--r-- 415 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef BGZIP_H
#define BGZIP_H

#include <inttypes.h>
#include "gzip.h"
typedef struct {
    uint32_t lenCompressedData;
} bgzip_Header ;


bgzip_Header bgzip_Header_default();

int bgzip_extractBgzHeader(gzip_Header* gzipHeader, bgzip_Header *bgzipHeader);

int64_t bgzip_findLenUncompressedData(FILE* f, gzip_Header* gzipHeader,
                                   bgzip_Header *bgzipHeader);


#endif // BGZIP_H