| OLD | NEW |
| 1 /** | 1 /** |
| 2 * \file lzma/index_hash.h | 2 * \file lzma/index_hash.h |
| 3 * \brief Validates Index by using a hash function | 3 * \brief Validate Index by using a hash function |
| 4 * | 4 * |
| 5 * Hashing makes it possible to use constant amount of memory to validate | 5 * Hashing makes it possible to use constant amount of memory to validate |
| 6 * Index of arbitrary size. | 6 * Index of arbitrary size. |
| 7 */ | 7 */ |
| 8 | 8 |
| 9 /* | 9 /* |
| 10 * Author: Lasse Collin | 10 * Author: Lasse Collin |
| 11 * | 11 * |
| 12 * This file has been put into the public domain. | 12 * This file has been put into the public domain. |
| 13 * You can do whatever you want with this file. | 13 * You can do whatever you want with this file. |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 | 98 |
| 99 | 99 |
| 100 /** | 100 /** |
| 101 * \brief Get the size of the Index field as bytes | 101 * \brief Get the size of the Index field as bytes |
| 102 * | 102 * |
| 103 * This is needed to verify the Backward Size field in the Stream Footer. | 103 * This is needed to verify the Backward Size field in the Stream Footer. |
| 104 */ | 104 */ |
| 105 extern LZMA_API(lzma_vli) lzma_index_hash_size( | 105 extern LZMA_API(lzma_vli) lzma_index_hash_size( |
| 106 const lzma_index_hash *index_hash) | 106 const lzma_index_hash *index_hash) |
| 107 lzma_nothrow lzma_attr_pure; | 107 lzma_nothrow lzma_attr_pure; |
| OLD | NEW |