diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2010-10-21 23:06:31 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2010-10-21 23:06:31 +0300 |
commit | d09c5753e33ff96ee57edb6d1e98e34041203695 (patch) | |
tree | ac6f5031a9cc1da06045e68d9b7733c3af0b3344 /src/liblzma/api/lzma.h | |
parent | Update INSTALL.generic. (diff) | |
download | xz-d09c5753e33ff96ee57edb6d1e98e34041203695.tar.xz |
liblzma: Update the comments in the API headers.
Adding support for LZMA_FINISH for Index encoding and
decoding needed tiny additions to the relevant .c files too.
Diffstat (limited to '')
-rw-r--r-- | src/liblzma/api/lzma.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/liblzma/api/lzma.h b/src/liblzma/api/lzma.h index fb593a35..fb874c3e 100644 --- a/src/liblzma/api/lzma.h +++ b/src/liblzma/api/lzma.h @@ -60,8 +60,8 @@ * * Some could argue that liblzma API should provide all the required types, * for example lzma_uint64, LZMA_UINT64_C(n), and LZMA_UINT64_MAX. This was - * seen unnecessary mess, since most systems already provide all the necessary - * types and macros in the standard headers. + * seen as an unnecessary mess, since most systems already provide all the + * necessary types and macros in the standard headers. * * Note that liblzma API still has lzma_bool, because using stdbool.h would * break C89 and C++ programs on many systems. sizeof(bool) in C99 isn't |