File: tabix_util.h

package info (click to toggle)
python-pysam 0.7.7-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 11,096 kB
  • ctags: 10,802
  • sloc: ansic: 25,638; python: 3,882; makefile: 157; sh: 12
file content (13 lines) | stat: -rw-r--r-- 289 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* See issue 122
   On some MACOSX systems getline is not defined.
 */
#include <zlib.h>
#include "kseq.h"

#if !(_POSIX_C_SOURCE >= 200809L || _XOPEN_SOURCE >= 700)
#include "unistd.h"
ssize_t getline(char **line, size_t *linelen, FILE *fp);
#endif

KSTREAM_INIT( gzFile, gzread, 16384)