diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-07-16 19:33:24 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-07-16 19:33:24 +0000 |
commit | 818001ba76b3b9deae956e213ffdf1206fe02635 (patch) | |
tree | b2b489adb39605ed99b63ed5f97c839155651c83 /src/htslib.c | |
parent | b4c15a3b3beb4d000c92b2147f9056c25bbc4818 (diff) |
Added hts_get_stats()
Diffstat (limited to 'src/htslib.c')
-rw-r--r-- | src/htslib.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/htslib.c b/src/htslib.c index 0dd6e1f..d57b120 100644 --- a/src/htslib.c +++ b/src/htslib.c @@ -5648,6 +5648,11 @@ HTSEXT_API void hts_free_opt(httrackp * opt) { } } +// TEMPORARY - PUT THIS STRUCTURE INSIDE httrackp ! +const hts_stat_struct* hts_get_stats(httrackp * opt) { + return &HTS_STAT; +} + // defaut wrappers static void __cdecl htsdefault_init(t_hts_callbackarg * carg) { } |