summaryrefslogtreecommitdiff
path: root/include/compression/bwt.h
diff options
context:
space:
mode:
authorMagnus Lundborg <lundborg.magnus@gmail.com>2014-12-04 16:05:42 (GMT)
committerMagnus Lundborg <lundborg.magnus@gmail.com>2014-12-08 13:35:27 (GMT)
commitb6c0fbcbb224c894eb90cc920c6ecb8e8d48e66a (patch)
tree945db6cb55f72e09c56e2846eaa355f8c6bc472d /include/compression/bwt.h
parentdb972bad9178b95ee16110de186074476579bf89 (diff)
Made function arguments const where relevant.
Change-Id: I5b196b57976c8c718b079336a805188ccb03ef4b
Diffstat (limited to 'include/compression/bwt.h')
-rw-r--r--include/compression/bwt.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/compression/bwt.h b/include/compression/bwt.h
index 9f927f8..fedfc3d 100644
--- a/include/compression/bwt.h
+++ b/include/compression/bwt.h
@@ -12,15 +12,15 @@
#ifndef BWT_H
#define BWT_H
-void Ptngc_comp_to_bwt(unsigned int *vals, int nvals,
+void Ptngc_comp_to_bwt(unsigned int *vals, const int nvals,
unsigned int *output, int *index);
-void Ptngc_comp_from_bwt(unsigned int *input, int nvals, int index,
+void Ptngc_comp_from_bwt(unsigned int *input, const int nvals, int index,
unsigned int *vals);
-void Ptngc_bwt_merge_sort_inner(int *indices, int nvals,unsigned int *vals,
- int start, int end,
- unsigned int *nrepeat,
- int *workarray);
+void Ptngc_bwt_merge_sort_inner(int *indices, const int nvals, unsigned int *vals,
+ const int start, const int end,
+ unsigned int *nrepeat,
+ int *workarray);
#endif
contact: Jan Huwald // Impressum