mirror of
https://git.tukaani.org/xz.git
synced 2025-02-17 14:08:12 +00:00
liblzma: API doc cleanups
(cherry picked from commit 08ab0966a75b501aa7c717622223f0c13a113c75)
This commit is contained in:
parent
d15eb46891
commit
cf3780e309
@ -234,7 +234,7 @@ typedef struct {
|
||||
} block;
|
||||
|
||||
/**
|
||||
* \private Internal struct.
|
||||
* \private Internal data
|
||||
*
|
||||
* Internal data which is used to store the state of the iterator.
|
||||
* The exact format may vary between liblzma versions, so don't
|
||||
|
@ -68,9 +68,8 @@ typedef uint64_t lzma_vli;
|
||||
* This is useful to test that application has given acceptable values
|
||||
* for example in the uncompressed_size and compressed_size variables.
|
||||
*
|
||||
* \return True if the integer is representable as VLI or if it
|
||||
* indicates unknown value. False if the integer cannot be
|
||||
* represented as VLI.
|
||||
* \return True if the integer is representable as a VLI or if it
|
||||
* indicates an unknown value. False otherwise.
|
||||
*/
|
||||
#define lzma_vli_is_valid(vli) \
|
||||
((vli) <= LZMA_VLI_MAX || (vli) == LZMA_VLI_UNKNOWN)
|
||||
|
Loading…
x
Reference in New Issue
Block a user