aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/common/index_decoder.h (follow)
AgeCommit message (Collapse)AuthorFilesLines
2023-01-05liblzma: Remove common.h include from common/index.h.Jia Tan1-0/+1
common/index.h is needed by liblzma internally and tests. common.h will include and define many things that are not needed by the tests. Also, this prevents include order problems because common.h will redefine LZMA_API resulting in a warning.
2017-03-30liblzma: Make lzma_index_decoder_init() visible to other liblzma funcs.Lasse Collin1-0/+24
This is to allow other functions to use it without going via the public API (lzma_index_decoder()).