diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-05-03 11:30:41 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-05-03 11:30:41 +0000 |
commit | 75faaf7f11c1611f5b98b13b7d6f44c861f857d7 (patch) | |
tree | 7e6d354f8391cbfb86807383a617038fa5b97c30 /src/htslib.h | |
parent | 26e0b7e748badd2dd95d8b5a0743b0af5ea7f78f (diff) |
Fixed zero-length files not being properly handled (not savec on disk, not updated)
Diffstat (limited to 'src/htslib.h')
-rw-r--r-- | src/htslib.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/htslib.h b/src/htslib.h index be921bc..a676af6 100644 --- a/src/htslib.h +++ b/src/htslib.h @@ -231,6 +231,9 @@ struct t_dnscache { extern htsmutex dns_lock; +// initialize an htsblk structure +void hts_init_htsblk(htsblk* r); + // fonctions unix/winsock int hts_read(htsblk* r,char* buff,int size); //int HTS_TOTAL_RECV_CHECK(int var); |