libfshfs-python 20260730__tar.gz → 20260826__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (927) hide show
  1. {libfshfs_python-20260730 → libfshfs_python-20260826}/PKG-INFO +10 -5
  2. {libfshfs_python-20260730 → libfshfs_python-20260826}/README +9 -4
  3. {libfshfs_python-20260730 → libfshfs_python-20260826}/common/config.h +3 -3
  4. {libfshfs_python-20260730 → libfshfs_python-20260826}/configure +10 -10
  5. {libfshfs_python-20260730 → libfshfs_python-20260826}/configure.ac +1 -1
  6. libfshfs_python-20260826/dpkg/changelog +5 -0
  7. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfsmount.c +6 -1
  8. {libfshfs_python-20260730 → libfshfs_python-20260826}/include/libfshfs/definitions.h +2 -2
  9. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs.rc +2 -2
  10. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_allocation_block_stream.c +10 -13
  11. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_compressed_data_handle.c +6 -2
  12. libfshfs_python-20260826/libfshfs/libfshfs_compression.c +355 -0
  13. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_definitions.h +7 -6
  14. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_definitions.h.in +5 -4
  15. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_file_entry.c +127 -51
  16. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs.spec +2 -2
  17. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyproject.toml +1 -1
  18. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_btree_header.c +4 -0
  19. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_btree_node.c +4 -0
  20. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_btree_node_descriptor.c +4 -0
  21. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_compressed_data_handle.c +785 -175
  22. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_compression.c +176 -16
  23. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_extent.c +4 -0
  24. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_file_system.c +4 -0
  25. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_io_handle.c +4 -0
  26. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_thread_record.c +4 -0
  27. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/package.m4 +2 -2
  28. libfshfs_python-20260730/dpkg/changelog +0 -5
  29. libfshfs_python-20260730/libfshfs/libfshfs_compression.c +0 -392
  30. {libfshfs_python-20260730 → libfshfs_python-20260826}/ABOUT-NLS +0 -0
  31. {libfshfs_python-20260730 → libfshfs_python-20260826}/AUTHORS +0 -0
  32. {libfshfs_python-20260730 → libfshfs_python-20260826}/COPYING +0 -0
  33. {libfshfs_python-20260730 → libfshfs_python-20260826}/COPYING.LESSER +0 -0
  34. {libfshfs_python-20260730 → libfshfs_python-20260826}/ChangeLog +0 -0
  35. {libfshfs_python-20260730 → libfshfs_python-20260826}/INSTALL +0 -0
  36. {libfshfs_python-20260730 → libfshfs_python-20260826}/Makefile.am +0 -0
  37. {libfshfs_python-20260730 → libfshfs_python-20260826}/Makefile.in +0 -0
  38. {libfshfs_python-20260730 → libfshfs_python-20260826}/NEWS +0 -0
  39. {libfshfs_python-20260730 → libfshfs_python-20260826}/_build.py +0 -0
  40. {libfshfs_python-20260730 → libfshfs_python-20260826}/acinclude.m4 +0 -0
  41. {libfshfs_python-20260730 → libfshfs_python-20260826}/aclocal.m4 +0 -0
  42. {libfshfs_python-20260730 → libfshfs_python-20260826}/common/Makefile.am +0 -0
  43. {libfshfs_python-20260730 → libfshfs_python-20260826}/common/Makefile.in +0 -0
  44. {libfshfs_python-20260730 → libfshfs_python-20260826}/common/byte_stream.h +0 -0
  45. {libfshfs_python-20260730 → libfshfs_python-20260826}/common/common.h +0 -0
  46. {libfshfs_python-20260730 → libfshfs_python-20260826}/common/config.h.in +0 -0
  47. {libfshfs_python-20260730 → libfshfs_python-20260826}/common/config_borlandc.h +0 -0
  48. {libfshfs_python-20260730 → libfshfs_python-20260826}/common/config_msc.h +0 -0
  49. {libfshfs_python-20260730 → libfshfs_python-20260826}/common/config_winapi.h +0 -0
  50. {libfshfs_python-20260730 → libfshfs_python-20260826}/common/file_stream.h +0 -0
  51. {libfshfs_python-20260730 → libfshfs_python-20260826}/common/memory.h +0 -0
  52. {libfshfs_python-20260730 → libfshfs_python-20260826}/common/narrow_string.h +0 -0
  53. {libfshfs_python-20260730 → libfshfs_python-20260826}/common/system_string.h +0 -0
  54. {libfshfs_python-20260730 → libfshfs_python-20260826}/common/types.h +0 -0
  55. {libfshfs_python-20260730 → libfshfs_python-20260826}/common/types.h.in +0 -0
  56. {libfshfs_python-20260730 → libfshfs_python-20260826}/common/wide_string.h +0 -0
  57. {libfshfs_python-20260730 → libfshfs_python-20260826}/compile +0 -0
  58. {libfshfs_python-20260730 → libfshfs_python-20260826}/config.guess +0 -0
  59. {libfshfs_python-20260730 → libfshfs_python-20260826}/config.rpath +0 -0
  60. {libfshfs_python-20260730 → libfshfs_python-20260826}/config.sub +0 -0
  61. {libfshfs_python-20260730 → libfshfs_python-20260826}/depcomp +0 -0
  62. {libfshfs_python-20260730 → libfshfs_python-20260826}/dpkg/changelog.in +0 -0
  63. {libfshfs_python-20260730 → libfshfs_python-20260826}/dpkg/compat +0 -0
  64. {libfshfs_python-20260730 → libfshfs_python-20260826}/dpkg/control +0 -0
  65. {libfshfs_python-20260730 → libfshfs_python-20260826}/dpkg/copyright +0 -0
  66. {libfshfs_python-20260730 → libfshfs_python-20260826}/dpkg/libfshfs-dev.install +0 -0
  67. {libfshfs_python-20260730 → libfshfs_python-20260826}/dpkg/libfshfs-python3.install +0 -0
  68. {libfshfs_python-20260730 → libfshfs_python-20260826}/dpkg/libfshfs-tools.install +0 -0
  69. {libfshfs_python-20260730 → libfshfs_python-20260826}/dpkg/libfshfs.install +0 -0
  70. {libfshfs_python-20260730 → libfshfs_python-20260826}/dpkg/rules +0 -0
  71. {libfshfs_python-20260730 → libfshfs_python-20260826}/dpkg/source/format +0 -0
  72. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/Makefile.am +0 -0
  73. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/Makefile.in +0 -0
  74. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/digest_hash.c +0 -0
  75. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/digest_hash.h +0 -0
  76. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfsinfo.c +0 -0
  77. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_getopt.c +0 -0
  78. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_getopt.h +0 -0
  79. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_i18n.h +0 -0
  80. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_libbfio.h +0 -0
  81. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_libcerror.h +0 -0
  82. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_libclocale.h +0 -0
  83. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_libcnotify.h +0 -0
  84. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_libcpath.h +0 -0
  85. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_libfcache.h +0 -0
  86. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_libfdata.h +0 -0
  87. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_libfdatetime.h +0 -0
  88. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_libfguid.h +0 -0
  89. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_libfshfs.h +0 -0
  90. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_libhmac.h +0 -0
  91. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_libuna.h +0 -0
  92. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_output.c +0 -0
  93. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_output.h +0 -0
  94. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_signal.c +0 -0
  95. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_signal.h +0 -0
  96. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/fshfstools_unused.h +0 -0
  97. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/info_handle.c +0 -0
  98. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/info_handle.h +0 -0
  99. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/mount_dokan.c +0 -0
  100. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/mount_dokan.h +0 -0
  101. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/mount_file_entry.c +0 -0
  102. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/mount_file_entry.h +0 -0
  103. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/mount_file_system.c +0 -0
  104. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/mount_file_system.h +0 -0
  105. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/mount_fuse.c +0 -0
  106. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/mount_fuse.h +0 -0
  107. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/mount_handle.c +0 -0
  108. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/mount_handle.h +0 -0
  109. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/mount_path_string.c +0 -0
  110. {libfshfs_python-20260730 → libfshfs_python-20260826}/fshfstools/mount_path_string.h +0 -0
  111. {libfshfs_python-20260730 → libfshfs_python-20260826}/include/Makefile.am +0 -0
  112. {libfshfs_python-20260730 → libfshfs_python-20260826}/include/Makefile.in +0 -0
  113. {libfshfs_python-20260730 → libfshfs_python-20260826}/include/libfshfs/codepage.h +0 -0
  114. {libfshfs_python-20260730 → libfshfs_python-20260826}/include/libfshfs/definitions.h.in +0 -0
  115. {libfshfs_python-20260730 → libfshfs_python-20260826}/include/libfshfs/error.h +0 -0
  116. {libfshfs_python-20260730 → libfshfs_python-20260826}/include/libfshfs/extern.h +0 -0
  117. {libfshfs_python-20260730 → libfshfs_python-20260826}/include/libfshfs/features.h +0 -0
  118. {libfshfs_python-20260730 → libfshfs_python-20260826}/include/libfshfs/features.h.in +0 -0
  119. {libfshfs_python-20260730 → libfshfs_python-20260826}/include/libfshfs/types.h +0 -0
  120. {libfshfs_python-20260730 → libfshfs_python-20260826}/include/libfshfs/types.h.in +0 -0
  121. {libfshfs_python-20260730 → libfshfs_python-20260826}/include/libfshfs.h +0 -0
  122. {libfshfs_python-20260730 → libfshfs_python-20260826}/include/libfshfs.h.in +0 -0
  123. {libfshfs_python-20260730 → libfshfs_python-20260826}/install-sh +0 -0
  124. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/Makefile.am +0 -0
  125. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/Makefile.in +0 -0
  126. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_codepage.h +0 -0
  127. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_definitions.h +0 -0
  128. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_error.c +0 -0
  129. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_error.h +0 -0
  130. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_extern.h +0 -0
  131. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_file.c +0 -0
  132. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_file.h +0 -0
  133. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_file_io_handle.c +0 -0
  134. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_file_io_handle.h +0 -0
  135. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_file_pool.c +0 -0
  136. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_file_pool.h +0 -0
  137. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_file_range.c +0 -0
  138. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_file_range.h +0 -0
  139. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_file_range_io_handle.c +0 -0
  140. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_file_range_io_handle.h +0 -0
  141. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_handle.c +0 -0
  142. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_handle.h +0 -0
  143. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_libcdata.h +0 -0
  144. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_libcerror.h +0 -0
  145. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_libcfile.h +0 -0
  146. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_libclocale.h +0 -0
  147. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_libcpath.h +0 -0
  148. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_libcthreads.h +0 -0
  149. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_libuna.h +0 -0
  150. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_memory_range.c +0 -0
  151. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_memory_range.h +0 -0
  152. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_memory_range_io_handle.c +0 -0
  153. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_memory_range_io_handle.h +0 -0
  154. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_pool.c +0 -0
  155. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_pool.h +0 -0
  156. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_support.c +0 -0
  157. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_support.h +0 -0
  158. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_system_string.c +0 -0
  159. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_system_string.h +0 -0
  160. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_types.h +0 -0
  161. {libfshfs_python-20260730 → libfshfs_python-20260826}/libbfio/libbfio_unused.h +0 -0
  162. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/Makefile.am +0 -0
  163. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/Makefile.in +0 -0
  164. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_array.c +0 -0
  165. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_array.h +0 -0
  166. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_btree.c +0 -0
  167. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_btree.h +0 -0
  168. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_btree_node.c +0 -0
  169. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_btree_node.h +0 -0
  170. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_btree_values_list.c +0 -0
  171. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_btree_values_list.h +0 -0
  172. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_definitions.h +0 -0
  173. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_error.c +0 -0
  174. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_error.h +0 -0
  175. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_extern.h +0 -0
  176. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_libcerror.h +0 -0
  177. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_libcthreads.h +0 -0
  178. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_list.c +0 -0
  179. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_list.h +0 -0
  180. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_list_element.c +0 -0
  181. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_list_element.h +0 -0
  182. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_range_list.c +0 -0
  183. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_range_list.h +0 -0
  184. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_range_list_value.c +0 -0
  185. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_range_list_value.h +0 -0
  186. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_support.c +0 -0
  187. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_support.h +0 -0
  188. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_tree_node.c +0 -0
  189. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_tree_node.h +0 -0
  190. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_types.h +0 -0
  191. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcdata/libcdata_unused.h +0 -0
  192. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcerror/Makefile.am +0 -0
  193. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcerror/Makefile.in +0 -0
  194. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcerror/libcerror_definitions.h +0 -0
  195. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcerror/libcerror_error.c +0 -0
  196. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcerror/libcerror_error.h +0 -0
  197. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcerror/libcerror_extern.h +0 -0
  198. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcerror/libcerror_support.c +0 -0
  199. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcerror/libcerror_support.h +0 -0
  200. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcerror/libcerror_system.c +0 -0
  201. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcerror/libcerror_system.h +0 -0
  202. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcerror/libcerror_types.h +0 -0
  203. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcerror/libcerror_unused.h +0 -0
  204. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/Makefile.am +0 -0
  205. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/Makefile.in +0 -0
  206. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_definitions.h +0 -0
  207. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_error.c +0 -0
  208. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_error.h +0 -0
  209. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_extern.h +0 -0
  210. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_file.c +0 -0
  211. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_file.h +0 -0
  212. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_libcerror.h +0 -0
  213. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_libclocale.h +0 -0
  214. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_libcnotify.h +0 -0
  215. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_libuna.h +0 -0
  216. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_notify.c +0 -0
  217. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_notify.h +0 -0
  218. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_support.c +0 -0
  219. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_support.h +0 -0
  220. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_system_string.c +0 -0
  221. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_system_string.h +0 -0
  222. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_types.h +0 -0
  223. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_unused.h +0 -0
  224. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_winapi.c +0 -0
  225. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcfile/libcfile_winapi.h +0 -0
  226. {libfshfs_python-20260730 → libfshfs_python-20260826}/libclocale/Makefile.am +0 -0
  227. {libfshfs_python-20260730 → libfshfs_python-20260826}/libclocale/Makefile.in +0 -0
  228. {libfshfs_python-20260730 → libfshfs_python-20260826}/libclocale/libclocale_codepage.c +0 -0
  229. {libfshfs_python-20260730 → libfshfs_python-20260826}/libclocale/libclocale_codepage.h +0 -0
  230. {libfshfs_python-20260730 → libfshfs_python-20260826}/libclocale/libclocale_definitions.h +0 -0
  231. {libfshfs_python-20260730 → libfshfs_python-20260826}/libclocale/libclocale_extern.h +0 -0
  232. {libfshfs_python-20260730 → libfshfs_python-20260826}/libclocale/libclocale_libcerror.h +0 -0
  233. {libfshfs_python-20260730 → libfshfs_python-20260826}/libclocale/libclocale_locale.c +0 -0
  234. {libfshfs_python-20260730 → libfshfs_python-20260826}/libclocale/libclocale_locale.h +0 -0
  235. {libfshfs_python-20260730 → libfshfs_python-20260826}/libclocale/libclocale_support.c +0 -0
  236. {libfshfs_python-20260730 → libfshfs_python-20260826}/libclocale/libclocale_support.h +0 -0
  237. {libfshfs_python-20260730 → libfshfs_python-20260826}/libclocale/libclocale_unused.h +0 -0
  238. {libfshfs_python-20260730 → libfshfs_python-20260826}/libclocale/libclocale_wide_string.c +0 -0
  239. {libfshfs_python-20260730 → libfshfs_python-20260826}/libclocale/libclocale_wide_string.h +0 -0
  240. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcnotify/Makefile.am +0 -0
  241. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcnotify/Makefile.in +0 -0
  242. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcnotify/libcnotify_definitions.h +0 -0
  243. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcnotify/libcnotify_extern.h +0 -0
  244. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcnotify/libcnotify_libcerror.h +0 -0
  245. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcnotify/libcnotify_print.c +0 -0
  246. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcnotify/libcnotify_print.h +0 -0
  247. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcnotify/libcnotify_stream.c +0 -0
  248. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcnotify/libcnotify_stream.h +0 -0
  249. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcnotify/libcnotify_support.c +0 -0
  250. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcnotify/libcnotify_support.h +0 -0
  251. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcnotify/libcnotify_unused.h +0 -0
  252. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcnotify/libcnotify_verbose.c +0 -0
  253. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcnotify/libcnotify_verbose.h +0 -0
  254. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcpath/Makefile.am +0 -0
  255. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcpath/Makefile.in +0 -0
  256. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcpath/libcpath_definitions.h +0 -0
  257. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcpath/libcpath_error.c +0 -0
  258. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcpath/libcpath_error.h +0 -0
  259. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcpath/libcpath_extern.h +0 -0
  260. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcpath/libcpath_libcerror.h +0 -0
  261. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcpath/libcpath_libclocale.h +0 -0
  262. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcpath/libcpath_libcsplit.h +0 -0
  263. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcpath/libcpath_libuna.h +0 -0
  264. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcpath/libcpath_path.c +0 -0
  265. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcpath/libcpath_path.h +0 -0
  266. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcpath/libcpath_support.c +0 -0
  267. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcpath/libcpath_support.h +0 -0
  268. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcpath/libcpath_system_string.c +0 -0
  269. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcpath/libcpath_system_string.h +0 -0
  270. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcpath/libcpath_unused.h +0 -0
  271. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcsplit/Makefile.am +0 -0
  272. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcsplit/Makefile.in +0 -0
  273. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcsplit/libcsplit_definitions.h +0 -0
  274. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcsplit/libcsplit_error.c +0 -0
  275. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcsplit/libcsplit_error.h +0 -0
  276. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcsplit/libcsplit_extern.h +0 -0
  277. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcsplit/libcsplit_libcerror.h +0 -0
  278. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcsplit/libcsplit_narrow_split_string.c +0 -0
  279. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcsplit/libcsplit_narrow_split_string.h +0 -0
  280. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcsplit/libcsplit_narrow_string.c +0 -0
  281. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcsplit/libcsplit_narrow_string.h +0 -0
  282. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcsplit/libcsplit_support.c +0 -0
  283. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcsplit/libcsplit_support.h +0 -0
  284. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcsplit/libcsplit_types.h +0 -0
  285. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcsplit/libcsplit_unused.h +0 -0
  286. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcsplit/libcsplit_wide_split_string.c +0 -0
  287. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcsplit/libcsplit_wide_split_string.h +0 -0
  288. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcsplit/libcsplit_wide_string.c +0 -0
  289. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcsplit/libcsplit_wide_string.h +0 -0
  290. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/Makefile.am +0 -0
  291. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/Makefile.in +0 -0
  292. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_condition.c +0 -0
  293. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_condition.h +0 -0
  294. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_definitions.h +0 -0
  295. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_error.c +0 -0
  296. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_error.h +0 -0
  297. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_extern.h +0 -0
  298. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_libcerror.h +0 -0
  299. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_lock.c +0 -0
  300. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_lock.h +0 -0
  301. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_mutex.c +0 -0
  302. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_mutex.h +0 -0
  303. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_queue.c +0 -0
  304. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_queue.h +0 -0
  305. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_read_write_lock.c +0 -0
  306. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_read_write_lock.h +0 -0
  307. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_repeating_thread.c +0 -0
  308. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_repeating_thread.h +0 -0
  309. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_support.c +0 -0
  310. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_support.h +0 -0
  311. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_thread.c +0 -0
  312. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_thread.h +0 -0
  313. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_thread_attributes.c +0 -0
  314. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_thread_attributes.h +0 -0
  315. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_thread_pool.c +0 -0
  316. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_thread_pool.h +0 -0
  317. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_types.h +0 -0
  318. {libfshfs_python-20260730 → libfshfs_python-20260826}/libcthreads/libcthreads_unused.h +0 -0
  319. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfcache/Makefile.am +0 -0
  320. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfcache/Makefile.in +0 -0
  321. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfcache/libfcache_cache.c +0 -0
  322. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfcache/libfcache_cache.h +0 -0
  323. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfcache/libfcache_cache_value.c +0 -0
  324. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfcache/libfcache_cache_value.h +0 -0
  325. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfcache/libfcache_date_time.c +0 -0
  326. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfcache/libfcache_date_time.h +0 -0
  327. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfcache/libfcache_definitions.h +0 -0
  328. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfcache/libfcache_error.c +0 -0
  329. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfcache/libfcache_error.h +0 -0
  330. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfcache/libfcache_extern.h +0 -0
  331. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfcache/libfcache_libcdata.h +0 -0
  332. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfcache/libfcache_libcerror.h +0 -0
  333. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfcache/libfcache_support.c +0 -0
  334. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfcache/libfcache_support.h +0 -0
  335. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfcache/libfcache_types.h +0 -0
  336. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfcache/libfcache_unused.h +0 -0
  337. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/Makefile.am +0 -0
  338. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/Makefile.in +0 -0
  339. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_area.c +0 -0
  340. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_area.h +0 -0
  341. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_cache.c +0 -0
  342. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_cache.h +0 -0
  343. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_definitions.h +0 -0
  344. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_error.c +0 -0
  345. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_error.h +0 -0
  346. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_extern.h +0 -0
  347. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_libcdata.h +0 -0
  348. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_libcerror.h +0 -0
  349. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_libcnotify.h +0 -0
  350. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_libfcache.h +0 -0
  351. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_list.c +0 -0
  352. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_list.h +0 -0
  353. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_list_element.c +0 -0
  354. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_list_element.h +0 -0
  355. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_mapped_range.c +0 -0
  356. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_mapped_range.h +0 -0
  357. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_notify.c +0 -0
  358. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_notify.h +0 -0
  359. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_range.c +0 -0
  360. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_range.h +0 -0
  361. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_range_list.c +0 -0
  362. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_range_list.h +0 -0
  363. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_segments_array.c +0 -0
  364. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_segments_array.h +0 -0
  365. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_stream.c +0 -0
  366. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_stream.h +0 -0
  367. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_support.c +0 -0
  368. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_support.h +0 -0
  369. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_types.h +0 -0
  370. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_unused.h +0 -0
  371. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_vector.c +0 -0
  372. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdata/libfdata_vector.h +0 -0
  373. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/Makefile.am +0 -0
  374. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/Makefile.in +0 -0
  375. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_date_time_values.c +0 -0
  376. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_date_time_values.h +0 -0
  377. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_definitions.h +0 -0
  378. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_error.c +0 -0
  379. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_error.h +0 -0
  380. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_extern.h +0 -0
  381. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_fat_date_time.c +0 -0
  382. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_fat_date_time.h +0 -0
  383. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_filetime.c +0 -0
  384. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_filetime.h +0 -0
  385. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_floatingtime.c +0 -0
  386. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_floatingtime.h +0 -0
  387. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_hfs_time.c +0 -0
  388. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_hfs_time.h +0 -0
  389. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_libcerror.h +0 -0
  390. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_nsf_timedate.c +0 -0
  391. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_nsf_timedate.h +0 -0
  392. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_posix_time.c +0 -0
  393. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_posix_time.h +0 -0
  394. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_support.c +0 -0
  395. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_support.h +0 -0
  396. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_systemtime.c +0 -0
  397. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_systemtime.h +0 -0
  398. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_types.h +0 -0
  399. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfdatetime/libfdatetime_unused.h +0 -0
  400. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfguid/Makefile.am +0 -0
  401. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfguid/Makefile.in +0 -0
  402. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfguid/libfguid_definitions.h +0 -0
  403. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfguid/libfguid_error.c +0 -0
  404. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfguid/libfguid_error.h +0 -0
  405. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfguid/libfguid_extern.h +0 -0
  406. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfguid/libfguid_identifier.c +0 -0
  407. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfguid/libfguid_identifier.h +0 -0
  408. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfguid/libfguid_libcerror.h +0 -0
  409. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfguid/libfguid_support.c +0 -0
  410. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfguid/libfguid_support.h +0 -0
  411. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfguid/libfguid_types.h +0 -0
  412. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfguid/libfguid_unused.h +0 -0
  413. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/Makefile.am +0 -0
  414. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/Makefile.in +0 -0
  415. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_adc.c +0 -0
  416. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_adc.h +0 -0
  417. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_definitions.h +0 -0
  418. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_error.c +0 -0
  419. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_error.h +0 -0
  420. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_extern.h +0 -0
  421. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_libcerror.h +0 -0
  422. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_libcnotify.h +0 -0
  423. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_lzfse.c +0 -0
  424. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_lzfse.h +0 -0
  425. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_lzfse_bit_stream.c +0 -0
  426. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_lzfse_bit_stream.h +0 -0
  427. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_lzfse_decoder.c +0 -0
  428. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_lzfse_decoder.h +0 -0
  429. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_lzvn.c +0 -0
  430. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_lzvn.h +0 -0
  431. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_notify.c +0 -0
  432. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_notify.h +0 -0
  433. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_support.c +0 -0
  434. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_support.h +0 -0
  435. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_types.h +0 -0
  436. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfmos/libfmos_unused.h +0 -0
  437. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/Makefile.am +0 -0
  438. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/Makefile.in +0 -0
  439. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/fshfs_attributes_file.h +0 -0
  440. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/fshfs_btree.h +0 -0
  441. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/fshfs_catalog_file.h +0 -0
  442. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/fshfs_compressed_data.h +0 -0
  443. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/fshfs_extents_file.h +0 -0
  444. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/fshfs_fork_descriptor.h +0 -0
  445. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/fshfs_master_directory_block.h +0 -0
  446. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/fshfs_volume_header.h +0 -0
  447. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs.c +0 -0
  448. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs.rc.in +0 -0
  449. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_allocation_block_stream.h +0 -0
  450. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_attribute_record.c +0 -0
  451. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_attribute_record.h +0 -0
  452. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_attributes_btree_file.c +0 -0
  453. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_attributes_btree_file.h +0 -0
  454. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_attributes_btree_key.c +0 -0
  455. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_attributes_btree_key.h +0 -0
  456. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_bit_stream.c +0 -0
  457. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_bit_stream.h +0 -0
  458. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_block_data_handle.c +0 -0
  459. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_block_data_handle.h +0 -0
  460. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_btree_file.c +0 -0
  461. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_btree_file.h +0 -0
  462. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_btree_header.c +0 -0
  463. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_btree_header.h +0 -0
  464. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_btree_node.c +0 -0
  465. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_btree_node.h +0 -0
  466. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_btree_node_cache.c +0 -0
  467. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_btree_node_cache.h +0 -0
  468. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_btree_node_descriptor.c +0 -0
  469. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_btree_node_descriptor.h +0 -0
  470. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_btree_node_record.c +0 -0
  471. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_btree_node_record.h +0 -0
  472. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_btree_node_vector.c +0 -0
  473. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_btree_node_vector.h +0 -0
  474. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_buffer_data_handle.c +0 -0
  475. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_buffer_data_handle.h +0 -0
  476. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_catalog_btree_file.c +0 -0
  477. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_catalog_btree_file.h +0 -0
  478. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_catalog_btree_key.c +0 -0
  479. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_catalog_btree_key.h +0 -0
  480. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_compressed_data_handle.h +0 -0
  481. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_compressed_data_header.c +0 -0
  482. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_compressed_data_header.h +0 -0
  483. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_compression.h +0 -0
  484. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_data_stream.c +0 -0
  485. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_data_stream.h +0 -0
  486. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_debug.c +0 -0
  487. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_debug.h +0 -0
  488. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_deflate.c +0 -0
  489. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_deflate.h +0 -0
  490. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_directory_entry.c +0 -0
  491. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_directory_entry.h +0 -0
  492. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_directory_record.c +0 -0
  493. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_directory_record.h +0 -0
  494. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_error.c +0 -0
  495. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_error.h +0 -0
  496. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_extended_attribute.c +0 -0
  497. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_extended_attribute.h +0 -0
  498. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_extent.c +0 -0
  499. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_extent.h +0 -0
  500. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_extents_btree_file.c +0 -0
  501. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_extents_btree_file.h +0 -0
  502. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_extents_btree_key.c +0 -0
  503. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_extents_btree_key.h +0 -0
  504. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_extents_record.c +0 -0
  505. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_extents_record.h +0 -0
  506. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_extern.h +0 -0
  507. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_file_entry.h +0 -0
  508. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_file_record.c +0 -0
  509. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_file_record.h +0 -0
  510. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_file_system.c +0 -0
  511. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_file_system.h +0 -0
  512. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_fork_descriptor.c +0 -0
  513. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_fork_descriptor.h +0 -0
  514. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_huffman_tree.c +0 -0
  515. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_huffman_tree.h +0 -0
  516. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_io_handle.c +0 -0
  517. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_io_handle.h +0 -0
  518. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_libbfio.h +0 -0
  519. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_libcdata.h +0 -0
  520. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_libcerror.h +0 -0
  521. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_libclocale.h +0 -0
  522. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_libcnotify.h +0 -0
  523. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_libcthreads.h +0 -0
  524. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_libfcache.h +0 -0
  525. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_libfdata.h +0 -0
  526. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_libfdatetime.h +0 -0
  527. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_libfguid.h +0 -0
  528. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_libfmos.h +0 -0
  529. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_libuna.h +0 -0
  530. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_master_directory_block.c +0 -0
  531. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_master_directory_block.h +0 -0
  532. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_name.c +0 -0
  533. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_name.h +0 -0
  534. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_notify.c +0 -0
  535. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_notify.h +0 -0
  536. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_profiler.c +0 -0
  537. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_profiler.h +0 -0
  538. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_support.c +0 -0
  539. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_support.h +0 -0
  540. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_thread_record.c +0 -0
  541. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_thread_record.h +0 -0
  542. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_types.h +0 -0
  543. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_unused.h +0 -0
  544. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_volume.c +0 -0
  545. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_volume.h +0 -0
  546. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_volume_header.c +0 -0
  547. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs/libfshfs_volume_header.h +0 -0
  548. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs.pc.in +0 -0
  549. {libfshfs_python-20260730 → libfshfs_python-20260826}/libfshfs.spec.in +0 -0
  550. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/Makefile.am +0 -0
  551. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/Makefile.in +0 -0
  552. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_byte_stream.h +0 -0
  553. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_definitions.h +0 -0
  554. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_error.c +0 -0
  555. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_error.h +0 -0
  556. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_extern.h +0 -0
  557. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_libcerror.h +0 -0
  558. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_md5.c +0 -0
  559. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_md5.h +0 -0
  560. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_md5_context.c +0 -0
  561. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_md5_context.h +0 -0
  562. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_sha1.c +0 -0
  563. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_sha1.h +0 -0
  564. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_sha1_context.c +0 -0
  565. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_sha1_context.h +0 -0
  566. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_sha224.c +0 -0
  567. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_sha224.h +0 -0
  568. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_sha224_context.c +0 -0
  569. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_sha224_context.h +0 -0
  570. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_sha256.c +0 -0
  571. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_sha256.h +0 -0
  572. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_sha256_context.c +0 -0
  573. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_sha256_context.h +0 -0
  574. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_sha512.c +0 -0
  575. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_sha512.h +0 -0
  576. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_sha512_context.c +0 -0
  577. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_sha512_context.h +0 -0
  578. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_support.c +0 -0
  579. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_support.h +0 -0
  580. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_types.h +0 -0
  581. {libfshfs_python-20260730 → libfshfs_python-20260826}/libhmac/libhmac_unused.h +0 -0
  582. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/Makefile.am +0 -0
  583. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/Makefile.in +0 -0
  584. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_base16_stream.c +0 -0
  585. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_base16_stream.h +0 -0
  586. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_base32_stream.c +0 -0
  587. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_base32_stream.h +0 -0
  588. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_base64_stream.c +0 -0
  589. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_base64_stream.h +0 -0
  590. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_byte_stream.c +0 -0
  591. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_byte_stream.h +0 -0
  592. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_10.c +0 -0
  593. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_10.h +0 -0
  594. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_13.c +0 -0
  595. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_13.h +0 -0
  596. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_14.c +0 -0
  597. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_14.h +0 -0
  598. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_15.c +0 -0
  599. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_15.h +0 -0
  600. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_16.c +0 -0
  601. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_16.h +0 -0
  602. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_2.c +0 -0
  603. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_2.h +0 -0
  604. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_3.c +0 -0
  605. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_3.h +0 -0
  606. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_4.c +0 -0
  607. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_4.h +0 -0
  608. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_5.c +0 -0
  609. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_5.h +0 -0
  610. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_6.c +0 -0
  611. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_6.h +0 -0
  612. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_7.c +0 -0
  613. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_7.h +0 -0
  614. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_8.c +0 -0
  615. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_8.h +0 -0
  616. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_9.c +0 -0
  617. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_iso_8859_9.h +0 -0
  618. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_koi8_r.c +0 -0
  619. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_koi8_r.h +0 -0
  620. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_koi8_u.c +0 -0
  621. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_koi8_u.h +0 -0
  622. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_arabic.c +0 -0
  623. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_arabic.h +0 -0
  624. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_celtic.c +0 -0
  625. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_celtic.h +0 -0
  626. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_centraleurroman.c +0 -0
  627. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_centraleurroman.h +0 -0
  628. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_croatian.c +0 -0
  629. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_croatian.h +0 -0
  630. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_cyrillic.c +0 -0
  631. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_cyrillic.h +0 -0
  632. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_dingbats.c +0 -0
  633. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_dingbats.h +0 -0
  634. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_farsi.c +0 -0
  635. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_farsi.h +0 -0
  636. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_gaelic.c +0 -0
  637. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_gaelic.h +0 -0
  638. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_greek.c +0 -0
  639. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_greek.h +0 -0
  640. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_icelandic.c +0 -0
  641. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_icelandic.h +0 -0
  642. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_inuit.c +0 -0
  643. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_inuit.h +0 -0
  644. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_roman.c +0 -0
  645. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_roman.h +0 -0
  646. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_romanian.c +0 -0
  647. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_romanian.h +0 -0
  648. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_russian.c +0 -0
  649. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_russian.h +0 -0
  650. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_symbol.c +0 -0
  651. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_symbol.h +0 -0
  652. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_thai.c +0 -0
  653. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_thai.h +0 -0
  654. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_turkish.c +0 -0
  655. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_turkish.h +0 -0
  656. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_ukrainian.c +0 -0
  657. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_mac_ukrainian.h +0 -0
  658. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_1250.c +0 -0
  659. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_1250.h +0 -0
  660. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_1251.c +0 -0
  661. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_1251.h +0 -0
  662. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_1252.c +0 -0
  663. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_1252.h +0 -0
  664. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_1253.c +0 -0
  665. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_1253.h +0 -0
  666. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_1254.c +0 -0
  667. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_1254.h +0 -0
  668. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_1255.c +0 -0
  669. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_1255.h +0 -0
  670. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_1256.c +0 -0
  671. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_1256.h +0 -0
  672. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_1257.c +0 -0
  673. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_1257.h +0 -0
  674. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_1258.c +0 -0
  675. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_1258.h +0 -0
  676. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_874.c +0 -0
  677. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_874.h +0 -0
  678. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_932.c +0 -0
  679. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_932.h +0 -0
  680. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_936.c +0 -0
  681. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_936.h +0 -0
  682. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_949.c +0 -0
  683. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_949.h +0 -0
  684. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_950.c +0 -0
  685. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_codepage_windows_950.h +0 -0
  686. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_definitions.h +0 -0
  687. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_error.c +0 -0
  688. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_error.h +0 -0
  689. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_extern.h +0 -0
  690. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_libcerror.h +0 -0
  691. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_scsu.c +0 -0
  692. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_scsu.h +0 -0
  693. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_support.c +0 -0
  694. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_support.h +0 -0
  695. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_types.h +0 -0
  696. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_unicode_character.c +0 -0
  697. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_unicode_character.h +0 -0
  698. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_unused.h +0 -0
  699. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_url_stream.c +0 -0
  700. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_url_stream.h +0 -0
  701. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_utf16_stream.c +0 -0
  702. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_utf16_stream.h +0 -0
  703. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_utf16_string.c +0 -0
  704. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_utf16_string.h +0 -0
  705. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_utf32_stream.c +0 -0
  706. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_utf32_stream.h +0 -0
  707. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_utf32_string.c +0 -0
  708. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_utf32_string.h +0 -0
  709. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_utf7_stream.c +0 -0
  710. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_utf7_stream.h +0 -0
  711. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_utf8_stream.c +0 -0
  712. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_utf8_stream.h +0 -0
  713. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_utf8_string.c +0 -0
  714. {libfshfs_python-20260730 → libfshfs_python-20260826}/libuna/libuna_utf8_string.h +0 -0
  715. {libfshfs_python-20260730 → libfshfs_python-20260826}/ltmain.sh +0 -0
  716. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/common.m4 +0 -0
  717. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/gettext.m4 +0 -0
  718. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/host-cpu-c-abi.m4 +0 -0
  719. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/iconv.m4 +0 -0
  720. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/intlmacosx.m4 +0 -0
  721. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/lib-ld.m4 +0 -0
  722. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/lib-link.m4 +0 -0
  723. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/lib-prefix.m4 +0 -0
  724. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/libbfio.m4 +0 -0
  725. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/libcdata.m4 +0 -0
  726. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/libcerror.m4 +0 -0
  727. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/libcfile.m4 +0 -0
  728. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/libclocale.m4 +0 -0
  729. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/libcnotify.m4 +0 -0
  730. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/libcpath.m4 +0 -0
  731. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/libcrypto.m4 +0 -0
  732. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/libcsplit.m4 +0 -0
  733. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/libcthreads.m4 +0 -0
  734. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/libfcache.m4 +0 -0
  735. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/libfdata.m4 +0 -0
  736. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/libfdatetime.m4 +0 -0
  737. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/libfguid.m4 +0 -0
  738. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/libfmos.m4 +0 -0
  739. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/libfuse.m4 +0 -0
  740. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/libhmac.m4 +0 -0
  741. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/libtool.m4 +0 -0
  742. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/libuna.m4 +0 -0
  743. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/ltoptions.m4 +0 -0
  744. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/ltsugar.m4 +0 -0
  745. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/ltversion.m4 +0 -0
  746. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/lt~obsolete.m4 +0 -0
  747. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/nls.m4 +0 -0
  748. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/po.m4 +0 -0
  749. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/progtest.m4 +0 -0
  750. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/pthread.m4 +0 -0
  751. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/python.m4 +0 -0
  752. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/tests.m4 +0 -0
  753. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/types.m4 +0 -0
  754. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/yaltools.m4 +0 -0
  755. {libfshfs_python-20260730 → libfshfs_python-20260826}/m4/zlib.m4 +0 -0
  756. {libfshfs_python-20260730 → libfshfs_python-20260826}/manuals/Makefile.am +0 -0
  757. {libfshfs_python-20260730 → libfshfs_python-20260826}/manuals/Makefile.in +0 -0
  758. {libfshfs_python-20260730 → libfshfs_python-20260826}/manuals/fshfsinfo.1 +0 -0
  759. {libfshfs_python-20260730 → libfshfs_python-20260826}/manuals/fshfsmount.1 +0 -0
  760. {libfshfs_python-20260730 → libfshfs_python-20260826}/manuals/libfshfs.3 +0 -0
  761. {libfshfs_python-20260730 → libfshfs_python-20260826}/missing +0 -0
  762. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/Makefile.am +0 -0
  763. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/Makefile.in +0 -0
  764. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_attribute_record/fshfs_test_attribute_record.vcproj +0 -0
  765. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_attributes_btree_key/fshfs_test_attributes_btree_key.vcproj +0 -0
  766. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_bit_stream/fshfs_test_bit_stream.vcproj +0 -0
  767. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_btree_file/fshfs_test_btree_file.vcproj +0 -0
  768. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_btree_header/fshfs_test_btree_header.vcproj +0 -0
  769. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_btree_node/fshfs_test_btree_node.vcproj +0 -0
  770. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_btree_node_descriptor/fshfs_test_btree_node_descriptor.vcproj +0 -0
  771. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_btree_node_record/fshfs_test_btree_node_record.vcproj +0 -0
  772. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_buffer_data_handle/fshfs_test_buffer_data_handle.vcproj +0 -0
  773. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_catalog_btree_key/fshfs_test_catalog_btree_key.vcproj +0 -0
  774. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_compressed_data_handle/fshfs_test_compressed_data_handle.vcproj +0 -0
  775. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_compression/fshfs_test_compression.vcproj +0 -0
  776. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_deflate/fshfs_test_deflate.vcproj +0 -0
  777. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_directory_entry/fshfs_test_directory_entry.vcproj +0 -0
  778. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_directory_record/fshfs_test_directory_record.vcproj +0 -0
  779. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_error/fshfs_test_error.vcproj +0 -0
  780. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_extent/fshfs_test_extent.vcproj +0 -0
  781. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_extents_btree_key/fshfs_test_extents_btree_key.vcproj +0 -0
  782. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_file_entry/fshfs_test_file_entry.vcproj +0 -0
  783. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_file_record/fshfs_test_file_record.vcproj +0 -0
  784. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_file_system/fshfs_test_file_system.vcproj +0 -0
  785. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_fork_descriptor/fshfs_test_fork_descriptor.vcproj +0 -0
  786. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_huffman_tree/fshfs_test_huffman_tree.vcproj +0 -0
  787. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_io_handle/fshfs_test_io_handle.vcproj +0 -0
  788. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_master_directory_block/fshfs_test_master_directory_block.vcproj +0 -0
  789. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_name/fshfs_test_name.vcproj +0 -0
  790. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_notify/fshfs_test_notify.vcproj +0 -0
  791. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_profiler/fshfs_test_profiler.vcproj +0 -0
  792. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_support/fshfs_test_support.vcproj +0 -0
  793. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_thread_record/fshfs_test_thread_record.vcproj +0 -0
  794. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_tools_info_handle/fshfs_test_tools_info_handle.vcproj +0 -0
  795. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_tools_mount_path_string/fshfs_test_tools_mount_path_string.vcproj +0 -0
  796. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_tools_output/fshfs_test_tools_output.vcproj +0 -0
  797. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_tools_signal/fshfs_test_tools_signal.vcproj +0 -0
  798. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_volume/fshfs_test_volume.vcproj +0 -0
  799. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfs_test_volume_header/fshfs_test_volume_header.vcproj +0 -0
  800. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfsinfo/fshfsinfo.vcproj +0 -0
  801. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/fshfsmount/fshfsmount.vcproj +0 -0
  802. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/libbfio/libbfio.vcproj +0 -0
  803. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/libcdata/libcdata.vcproj +0 -0
  804. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/libcerror/libcerror.vcproj +0 -0
  805. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/libcfile/libcfile.vcproj +0 -0
  806. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/libclocale/libclocale.vcproj +0 -0
  807. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/libcnotify/libcnotify.vcproj +0 -0
  808. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/libcpath/libcpath.vcproj +0 -0
  809. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/libcsplit/libcsplit.vcproj +0 -0
  810. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/libcthreads/libcthreads.vcproj +0 -0
  811. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/libfcache/libfcache.vcproj +0 -0
  812. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/libfdata/libfdata.vcproj +0 -0
  813. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/libfdatetime/libfdatetime.vcproj +0 -0
  814. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/libfguid/libfguid.vcproj +0 -0
  815. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/libfmos/libfmos.vcproj +0 -0
  816. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/libfshfs/libfshfs.vcproj +0 -0
  817. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/libfshfs.sln +0 -0
  818. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/libhmac/libhmac.vcproj +0 -0
  819. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/libuna/libuna.vcproj +0 -0
  820. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/pyfshfs/pyfshfs.vcproj +0 -0
  821. {libfshfs_python-20260730 → libfshfs_python-20260826}/msvscpp/zlib/zlib.vcproj +0 -0
  822. {libfshfs_python-20260730 → libfshfs_python-20260826}/ossfuzz/Makefile.am +0 -0
  823. {libfshfs_python-20260730 → libfshfs_python-20260826}/ossfuzz/Makefile.in +0 -0
  824. {libfshfs_python-20260730 → libfshfs_python-20260826}/ossfuzz/extended_attribute_fuzzer.cc +0 -0
  825. {libfshfs_python-20260730 → libfshfs_python-20260826}/ossfuzz/file_entry_fuzzer.cc +0 -0
  826. {libfshfs_python-20260730 → libfshfs_python-20260826}/ossfuzz/ossfuzz_libbfio.h +0 -0
  827. {libfshfs_python-20260730 → libfshfs_python-20260826}/ossfuzz/ossfuzz_libfshfs.h +0 -0
  828. {libfshfs_python-20260730 → libfshfs_python-20260826}/ossfuzz/volume_fuzzer.cc +0 -0
  829. {libfshfs_python-20260730 → libfshfs_python-20260826}/po/ChangeLog +0 -0
  830. {libfshfs_python-20260730 → libfshfs_python-20260826}/po/Makefile.in.in +0 -0
  831. {libfshfs_python-20260730 → libfshfs_python-20260826}/po/Makevars +0 -0
  832. {libfshfs_python-20260730 → libfshfs_python-20260826}/po/Makevars.in +0 -0
  833. {libfshfs_python-20260730 → libfshfs_python-20260826}/po/POTFILES.in +0 -0
  834. {libfshfs_python-20260730 → libfshfs_python-20260826}/po/Rules-quot +0 -0
  835. {libfshfs_python-20260730 → libfshfs_python-20260826}/po/boldquot.sed +0 -0
  836. {libfshfs_python-20260730 → libfshfs_python-20260826}/po/en@boldquot.header +0 -0
  837. {libfshfs_python-20260730 → libfshfs_python-20260826}/po/en@quot.header +0 -0
  838. {libfshfs_python-20260730 → libfshfs_python-20260826}/po/insert-header.sin +0 -0
  839. {libfshfs_python-20260730 → libfshfs_python-20260826}/po/quot.sed +0 -0
  840. {libfshfs_python-20260730 → libfshfs_python-20260826}/po/remove-potcdate.sin +0 -0
  841. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/Makefile.am +0 -0
  842. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/Makefile.in +0 -0
  843. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs.c +0 -0
  844. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs.h +0 -0
  845. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_data_stream.c +0 -0
  846. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_data_stream.h +0 -0
  847. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_datetime.c +0 -0
  848. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_datetime.h +0 -0
  849. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_error.c +0 -0
  850. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_error.h +0 -0
  851. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_extended_attribute.c +0 -0
  852. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_extended_attribute.h +0 -0
  853. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_extended_attributes.c +0 -0
  854. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_extended_attributes.h +0 -0
  855. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_file_entries.c +0 -0
  856. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_file_entries.h +0 -0
  857. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_file_entry.c +0 -0
  858. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_file_entry.h +0 -0
  859. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_file_object_io_handle.c +0 -0
  860. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_file_object_io_handle.h +0 -0
  861. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_integer.c +0 -0
  862. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_integer.h +0 -0
  863. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_libbfio.h +0 -0
  864. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_libcerror.h +0 -0
  865. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_libfshfs.h +0 -0
  866. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_python.h +0 -0
  867. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_unused.h +0 -0
  868. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_volume.c +0 -0
  869. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyfshfs/pyfshfs_volume.h +0 -0
  870. {libfshfs_python-20260730 → libfshfs_python-20260826}/pyproject.toml.in +0 -0
  871. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/Makefile.am +0 -0
  872. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/Makefile.in +0 -0
  873. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/atlocal.in +0 -0
  874. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_attribute_record.c +0 -0
  875. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_attributes_btree_key.c +0 -0
  876. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_bit_stream.c +0 -0
  877. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_btree_file.c +0 -0
  878. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_btree_node_record.c +0 -0
  879. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_buffer_data_handle.c +0 -0
  880. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_catalog_btree_key.c +0 -0
  881. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_deflate.c +0 -0
  882. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_directory_entry.c +0 -0
  883. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_directory_record.c +0 -0
  884. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_error.c +0 -0
  885. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_extents_btree_key.c +0 -0
  886. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_file_entry.c +0 -0
  887. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_file_record.c +0 -0
  888. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_fork_descriptor.c +0 -0
  889. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_functions.c +0 -0
  890. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_functions.h +0 -0
  891. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_getopt.c +0 -0
  892. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_getopt.h +0 -0
  893. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_huffman_tree.c +0 -0
  894. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_libbfio.h +0 -0
  895. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_libcerror.h +0 -0
  896. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_libclocale.h +0 -0
  897. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_libcnotify.h +0 -0
  898. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_libcpath.h +0 -0
  899. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_libfdata.h +0 -0
  900. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_libfshfs.h +0 -0
  901. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_libuna.h +0 -0
  902. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_macros.h +0 -0
  903. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_master_directory_block.c +0 -0
  904. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_memory.c +0 -0
  905. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_memory.h +0 -0
  906. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_name.c +0 -0
  907. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_notify.c +0 -0
  908. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_profiler.c +0 -0
  909. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_support.c +0 -0
  910. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_tools_info_handle.c +0 -0
  911. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_tools_mount_path_string.c +0 -0
  912. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_tools_output.c +0 -0
  913. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_tools_signal.c +0 -0
  914. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_types.h +0 -0
  915. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_unicode_case_folding_mappings.h +0 -0
  916. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_unicode_decomposition_mappings.h +0 -0
  917. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_unused.h +0 -0
  918. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_volume.c +0 -0
  919. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/fshfs_test_volume_header.c +0 -0
  920. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/generate_test_inputs.sh +0 -0
  921. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/pyfshfs_test_support.py +0 -0
  922. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/pyfshfs_test_volume.py +0 -0
  923. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/test_library.at +0 -0
  924. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/test_macros.at +0 -0
  925. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/test_manpages.at +0 -0
  926. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/test_python_module.at +0 -0
  927. {libfshfs_python-20260730 → libfshfs_python-20260826}/tests/test_tools.at +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: libfshfs-python
3
- Version: 20260730
3
+ Version: 20260826
4
4
  Summary: Python bindings for libfshfs
5
5
  Maintainer-email: Joachim Metz <joachim.metz@gmail.com>
6
6
  License-Expression: LGPL-3.0-or-later
@@ -30,19 +30,24 @@ Read-only supported HFS formats:
30
30
  Unsupported HFS formats:
31
31
 
32
32
  * (traditional) HFS
33
+ * HFS-wrapped HFS+
33
34
  * HFS+, Mac OS 8.1 through 10.2 (Unicode 2.1 case-insensitive)
34
35
  * HFSX, Mac OS 8.1 through 10.2 (Unicode 2.1 case-sensitive)
35
36
 
36
37
  Supported HFS format features:
37
38
 
38
- * ZLIB (DEFLATE) compression
39
- * LZVN compression
39
+ * decmpfs compression
40
+ * LZFSE (compresssion methods 11 and 12)
41
+ * LZVN (compresssion methods 7 and 8)
42
+ * raw (compresssion methods 9 and 10)
43
+ * ZLIB (compresssion methods 3 and 4)
40
44
  * extended attributes
41
45
 
42
46
  Unsupported HFS format features:
43
47
 
44
- * LZFSE compression, compression methods 11 and 12
45
- * "uncompressed", compression methods 1, 9 and 10
48
+ * decmpfs compression
49
+ * "uncompressed" (compression methods 1)
50
+ * LZBitmap (compression methods 13 and 14)
46
51
 
47
52
  Planned:
48
53
 
@@ -13,19 +13,24 @@ Read-only supported HFS formats:
13
13
  Unsupported HFS formats:
14
14
 
15
15
  * (traditional) HFS
16
+ * HFS-wrapped HFS+
16
17
  * HFS+, Mac OS 8.1 through 10.2 (Unicode 2.1 case-insensitive)
17
18
  * HFSX, Mac OS 8.1 through 10.2 (Unicode 2.1 case-sensitive)
18
19
 
19
20
  Supported HFS format features:
20
21
 
21
- * ZLIB (DEFLATE) compression
22
- * LZVN compression
22
+ * decmpfs compression
23
+ * LZFSE (compresssion methods 11 and 12)
24
+ * LZVN (compresssion methods 7 and 8)
25
+ * raw (compresssion methods 9 and 10)
26
+ * ZLIB (compresssion methods 3 and 4)
23
27
  * extended attributes
24
28
 
25
29
  Unsupported HFS format features:
26
30
 
27
- * LZFSE compression, compression methods 11 and 12
28
- * "uncompressed", compression methods 1, 9 and 10
31
+ * decmpfs compression
32
+ * "uncompressed" (compression methods 1)
33
+ * LZBitmap (compression methods 13 and 14)
29
34
 
30
35
  Planned:
31
36
 
@@ -629,7 +629,7 @@
629
629
  #define PACKAGE_NAME "libfshfs"
630
630
 
631
631
  /* Define to the full name and version of this package. */
632
- #define PACKAGE_STRING "libfshfs 20260730"
632
+ #define PACKAGE_STRING "libfshfs 20260826"
633
633
 
634
634
  /* Define to the one symbol short name of this package. */
635
635
  #define PACKAGE_TARNAME "libfshfs"
@@ -638,7 +638,7 @@
638
638
  #define PACKAGE_URL ""
639
639
 
640
640
  /* Define to the version of this package. */
641
- #define PACKAGE_VERSION "20260730"
641
+ #define PACKAGE_VERSION "20260826"
642
642
 
643
643
  /* The size of `int', as computed by sizeof. */
644
644
  #define SIZEOF_INT 4
@@ -667,7 +667,7 @@
667
667
  /* #undef TM_IN_SYS_TIME */
668
668
 
669
669
  /* Version number of package */
670
- #define VERSION "20260730"
670
+ #define VERSION "20260826"
671
671
 
672
672
  /* Number of bits in a file offset, on hosts where this is settable. */
673
673
  /* #undef _FILE_OFFSET_BITS */
@@ -1,6 +1,6 @@
1
1
  #! /bin/sh
2
2
  # Guess values for system-dependent variables and create Makefiles.
3
- # Generated by GNU Autoconf 2.71 for libfshfs 20260730.
3
+ # Generated by GNU Autoconf 2.71 for libfshfs 20260826.
4
4
  #
5
5
  # Report bugs to <https://github.com/libyal/libfshfs/issues>.
6
6
  #
@@ -621,8 +621,8 @@ MAKEFLAGS=
621
621
  # Identity of this package.
622
622
  PACKAGE_NAME='libfshfs'
623
623
  PACKAGE_TARNAME='libfshfs'
624
- PACKAGE_VERSION='20260730'
625
- PACKAGE_STRING='libfshfs 20260730'
624
+ PACKAGE_VERSION='20260826'
625
+ PACKAGE_STRING='libfshfs 20260826'
626
626
  PACKAGE_BUGREPORT='https://github.com/libyal/libfshfs/issues'
627
627
  PACKAGE_URL=''
628
628
 
@@ -1728,7 +1728,7 @@ if test "$ac_init_help" = "long"; then
1728
1728
  # Omit some internal or obsolete options to make the list less imposing.
1729
1729
  # This message is too long to be a string in the A/UX 3.1 sh.
1730
1730
  cat <<_ACEOF
1731
- \`configure' configures libfshfs 20260730 to adapt to many kinds of systems.
1731
+ \`configure' configures libfshfs 20260826 to adapt to many kinds of systems.
1732
1732
 
1733
1733
  Usage: $0 [OPTION]... [VAR=VALUE]...
1734
1734
 
@@ -1799,7 +1799,7 @@ fi
1799
1799
 
1800
1800
  if test -n "$ac_init_help"; then
1801
1801
  case $ac_init_help in
1802
- short | recursive ) echo "Configuration of libfshfs 20260730:";;
1802
+ short | recursive ) echo "Configuration of libfshfs 20260826:";;
1803
1803
  esac
1804
1804
  cat <<\_ACEOF
1805
1805
 
@@ -2087,7 +2087,7 @@ fi
2087
2087
  test -n "$ac_init_help" && exit $ac_status
2088
2088
  if $ac_init_version; then
2089
2089
  cat <<\_ACEOF
2090
- libfshfs configure 20260730
2090
+ libfshfs configure 20260826
2091
2091
  generated by GNU Autoconf 2.71
2092
2092
 
2093
2093
  Copyright (C) 2021 Free Software Foundation, Inc.
@@ -2808,7 +2808,7 @@ cat >config.log <<_ACEOF
2808
2808
  This file contains any messages produced by compilers while
2809
2809
  running configure, to aid debugging if configure makes a mistake.
2810
2810
 
2811
- It was created by libfshfs $as_me 20260730, which was
2811
+ It was created by libfshfs $as_me 20260826, which was
2812
2812
  generated by GNU Autoconf 2.71. Invocation command line was
2813
2813
 
2814
2814
  $ $0$ac_configure_args_raw
@@ -4297,7 +4297,7 @@ fi
4297
4297
 
4298
4298
  # Define the identity of the package.
4299
4299
  PACKAGE='libfshfs'
4300
- VERSION='20260730'
4300
+ VERSION='20260826'
4301
4301
 
4302
4302
 
4303
4303
  printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
@@ -64459,7 +64459,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
64459
64459
  # report actual input values of CONFIG_FILES etc. instead of their
64460
64460
  # values after options handling.
64461
64461
  ac_log="
64462
- This file was extended by libfshfs $as_me 20260730, which was
64462
+ This file was extended by libfshfs $as_me 20260826, which was
64463
64463
  generated by GNU Autoconf 2.71. Invocation command line was
64464
64464
 
64465
64465
  CONFIG_FILES = $CONFIG_FILES
@@ -64527,7 +64527,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
64527
64527
  cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
64528
64528
  ac_cs_config='$ac_cs_config_escaped'
64529
64529
  ac_cs_version="\\
64530
- libfshfs config.status 20260730
64530
+ libfshfs config.status 20260826
64531
64531
  configured by $0, generated by GNU Autoconf 2.71,
64532
64532
  with options \\"\$ac_cs_config\\"
64533
64533
 
@@ -2,7 +2,7 @@ AC_PREREQ([2.71])
2
2
 
3
3
  AC_INIT(
4
4
  [libfshfs],
5
- [20260730],
5
+ [20260826],
6
6
  [https://github.com/libyal/libfshfs/issues])
7
7
 
8
8
  AC_CONFIG_SRCDIR(
@@ -0,0 +1,5 @@
1
+ libfshfs (20260826-1) unstable; urgency=low
2
+
3
+ * Auto-generated
4
+
5
+ -- Joachim Metz <joachim.metz@gmail.com> Wed, 26 Aug 2026 14:07:23 +0000
@@ -488,9 +488,14 @@ int main( int argc, char * const argv[] )
488
488
 
489
489
  goto on_error;
490
490
  }
491
+ #if defined( HAVE_LIBFUSE3 )
491
492
  fuse_unmount(
492
493
  fshfsmount_fuse_handle );
493
-
494
+ #else
495
+ fuse_unmount(
496
+ mount_point,
497
+ fshfsmount_fuse_channel );
498
+ #endif
494
499
  fuse_destroy(
495
500
  fshfsmount_fuse_handle );
496
501
 
@@ -24,11 +24,11 @@
24
24
 
25
25
  #include <libfshfs/types.h>
26
26
 
27
- #define LIBFSHFS_VERSION 20260730
27
+ #define LIBFSHFS_VERSION 20260826
28
28
 
29
29
  /* The version string
30
30
  */
31
- #define LIBFSHFS_VERSION_STRING "20260730"
31
+ #define LIBFSHFS_VERSION_STRING "20260826"
32
32
 
33
33
  /* The file access
34
34
  * bit 1 set to 1 for read access
@@ -22,12 +22,12 @@ BEGIN
22
22
  BLOCK "040904E4"
23
23
  BEGIN
24
24
  VALUE "FileDescription", "Library to access the Hierarchical File System (HFS) format\0"
25
- VALUE "FileVersion", "20260730" "\0"
25
+ VALUE "FileVersion", "20260826" "\0"
26
26
  VALUE "InternalName", "libfshfs.dll\0"
27
27
  VALUE "LegalCopyright", "(C) 2009-2026, Joachim Metz <joachim.metz@gmail.com>\0"
28
28
  VALUE "OriginalFilename", "libfshfs.dll\0"
29
29
  VALUE "ProductName", "libfshfs\0"
30
- VALUE "ProductVersion", "20260730" "\0"
30
+ VALUE "ProductVersion", "20260826" "\0"
31
31
  VALUE "Comments", "For more information visit https://github.com/libyal/libfshfs/\0"
32
32
  END
33
33
  END
@@ -343,6 +343,7 @@ int libfshfs_allocation_block_stream_initialize_from_extents(
343
343
  libfshfs_extent_t *extent = NULL;
344
344
  static char *function = "libfshfs_allocation_block_stream_initialize_from_extents";
345
345
  size64_t segment_size = 0;
346
+ off64_t data_offset = 0;
346
347
  off64_t segment_offset = 0;
347
348
  int extent_index = 0;
348
349
  int number_of_extents = 0;
@@ -475,6 +476,10 @@ int libfshfs_allocation_block_stream_initialize_from_extents(
475
476
  segment_offset = (off64_t) extent->block_number * io_handle->block_size;
476
477
  segment_size = (size64_t) extent->number_of_blocks * io_handle->block_size;
477
478
 
479
+ if( segment_size > ( data_size - data_offset ) )
480
+ {
481
+ segment_size = data_size - data_offset;
482
+ }
478
483
  if( libfdata_stream_append_segment(
479
484
  safe_allocation_block_stream,
480
485
  &segment_index,
@@ -494,20 +499,12 @@ int libfshfs_allocation_block_stream_initialize_from_extents(
494
499
 
495
500
  goto on_error;
496
501
  }
497
- }
498
- if( libfdata_stream_set_mapped_size(
499
- safe_allocation_block_stream,
500
- data_size,
501
- error ) != 1 )
502
- {
503
- libcerror_error_set(
504
- error,
505
- LIBCERROR_ERROR_DOMAIN_RUNTIME,
506
- LIBCERROR_RUNTIME_ERROR_SET_FAILED,
507
- "%s: unable to set mapped size of allocation block stream.",
508
- function );
502
+ data_offset += segment_size;
509
503
 
510
- goto on_error;
504
+ if( (size64_t) data_offset >= data_size )
505
+ {
506
+ break;
507
+ }
511
508
  }
512
509
  *allocation_block_stream = safe_allocation_block_stream;
513
510
 
@@ -81,7 +81,9 @@ int libfshfs_compressed_data_handle_initialize(
81
81
  return( -1 );
82
82
  }
83
83
  if( ( compression_method != LIBFSHFS_COMPRESSION_METHOD_DEFLATE )
84
+ && ( compression_method != LIBFSHFS_COMPRESSION_METHOD_LZFSE )
84
85
  && ( compression_method != LIBFSHFS_COMPRESSION_METHOD_LZVN )
86
+ && ( compression_method != LIBFSHFS_COMPRESSION_METHOD_RAW )
85
87
  && ( compression_method != LIBFSHFS_COMPRESSION_METHOD_UNKNOWN5 ) )
86
88
  {
87
89
  libcerror_error_set(
@@ -423,7 +425,7 @@ int libfshfs_compressed_data_handle_get_compressed_block_offsets(
423
425
  240,
424
426
  LIBCNOTIFY_PRINT_DATA_FLAG_GROUP_DATA );
425
427
 
426
- byte_stream_copy_to_uint32_little_endian(
428
+ byte_stream_copy_to_uint32_big_endian(
427
429
  &( data_handle->compressed_segment_data[ 256 ] ),
428
430
  value_32bit );
429
431
  libcnotify_printf(
@@ -459,7 +461,9 @@ int libfshfs_compressed_data_handle_get_compressed_block_offsets(
459
461
  compressed_descriptors_offset += 4;
460
462
  compressed_block_descriptor_size = 8;
461
463
  }
462
- else if( data_handle->compression_method == LIBFSHFS_COMPRESSION_METHOD_LZVN )
464
+ else if( ( data_handle->compression_method == LIBFSHFS_COMPRESSION_METHOD_LZFSE )
465
+ || ( data_handle->compression_method == LIBFSHFS_COMPRESSION_METHOD_LZVN )
466
+ || ( data_handle->compression_method == LIBFSHFS_COMPRESSION_METHOD_RAW ) )
463
467
  {
464
468
  segment_data_offset = 0;
465
469
 
@@ -0,0 +1,355 @@
1
+ /*
2
+ * Compression functions
3
+ *
4
+ * Copyright (C) 2009-2026, Joachim Metz <joachim.metz@gmail.com>
5
+ *
6
+ * Refer to AUTHORS for acknowledgements.
7
+ *
8
+ * This program is free software: you can redistribute it and/or modify
9
+ * it under the terms of the GNU Lesser General Public License as published by
10
+ * the Free Software Foundation, either version 3 of the License, or
11
+ * (at your option) any later version.
12
+ *
13
+ * This program is distributed in the hope that it will be useful,
14
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ * GNU General Public License for more details.
17
+ *
18
+ * You should have received a copy of the GNU Lesser General Public License
19
+ * along with this program. If not, see <https://www.gnu.org/licenses/>.
20
+ */
21
+
22
+ #include <common.h>
23
+ #include <memory.h>
24
+ #include <types.h>
25
+
26
+ #if defined( HAVE_STDLIB_H ) || defined( WINAPI )
27
+ #include <stdlib.h>
28
+ #endif
29
+
30
+ #if defined( HAVE_ZLIB ) || defined( ZLIB_DLL )
31
+ #include <zlib.h>
32
+ #endif
33
+
34
+ #include "libfshfs_compression.h"
35
+ #include "libfshfs_definitions.h"
36
+ #include "libfshfs_deflate.h"
37
+ #include "libfshfs_libcerror.h"
38
+ #include "libfshfs_libcnotify.h"
39
+ #include "libfshfs_libfmos.h"
40
+
41
+ /* Decompresses data using the compression method
42
+ * Returns 1 on success, 0 on failure or -1 on error
43
+ */
44
+ int libfshfs_decompress_data(
45
+ const uint8_t *compressed_data,
46
+ size_t compressed_data_size,
47
+ int compression_method,
48
+ uint8_t *uncompressed_data,
49
+ size_t *uncompressed_data_size,
50
+ libcerror_error_t **error )
51
+ {
52
+ static char *function = "libfshfs_decompress_data";
53
+ int result = 0;
54
+ uint8_t uncompressed_data_marker = 0;
55
+
56
+ #if ( defined( HAVE_ZLIB ) && defined( HAVE_ZLIB_UNCOMPRESS ) ) || defined( ZLIB_DLL )
57
+ uLongf zlib_uncompressed_data_size = 0;
58
+ #endif
59
+
60
+ if( compressed_data == NULL )
61
+ {
62
+ libcerror_error_set(
63
+ error,
64
+ LIBCERROR_ERROR_DOMAIN_ARGUMENTS,
65
+ LIBCERROR_ARGUMENT_ERROR_INVALID_VALUE,
66
+ "%s: invalid compressed data buffer.",
67
+ function );
68
+
69
+ return( -1 );
70
+ }
71
+ if( uncompressed_data == NULL )
72
+ {
73
+ libcerror_error_set(
74
+ error,
75
+ LIBCERROR_ERROR_DOMAIN_ARGUMENTS,
76
+ LIBCERROR_ARGUMENT_ERROR_INVALID_VALUE,
77
+ "%s: invalid uncompressed data buffer.",
78
+ function );
79
+
80
+ return( -1 );
81
+ }
82
+ if( uncompressed_data == compressed_data )
83
+ {
84
+ libcerror_error_set(
85
+ error,
86
+ LIBCERROR_ERROR_DOMAIN_ARGUMENTS,
87
+ LIBCERROR_ARGUMENT_ERROR_INVALID_VALUE,
88
+ "%s: invalid compressed data buffer equals uncompressed data buffer.",
89
+ function );
90
+
91
+ return( -1 );
92
+ }
93
+ if( uncompressed_data_size == NULL )
94
+ {
95
+ libcerror_error_set(
96
+ error,
97
+ LIBCERROR_ERROR_DOMAIN_ARGUMENTS,
98
+ LIBCERROR_ARGUMENT_ERROR_INVALID_VALUE,
99
+ "%s: invalid uncompressed data size.",
100
+ function );
101
+
102
+ return( -1 );
103
+ }
104
+ if( ( compression_method == LIBFSHFS_COMPRESSION_METHOD_DEFLATE )
105
+ || ( compression_method == LIBFSHFS_COMPRESSION_METHOD_LZFSE ) )
106
+ {
107
+ uncompressed_data_marker = 0xff;
108
+ }
109
+ else if( compression_method == LIBFSHFS_COMPRESSION_METHOD_LZVN )
110
+ {
111
+ uncompressed_data_marker = 0x06;
112
+ }
113
+ else if( compression_method == LIBFSHFS_COMPRESSION_METHOD_RAW )
114
+ {
115
+ uncompressed_data_marker = 0xcc;
116
+ }
117
+ if( ( uncompressed_data_marker != 0 )
118
+ && ( compressed_data_size >= 1 )
119
+ && ( compressed_data[ 0 ] == uncompressed_data_marker ) )
120
+ {
121
+ if( compressed_data_size > (size_t) SSIZE_MAX )
122
+ {
123
+ libcerror_error_set(
124
+ error,
125
+ LIBCERROR_ERROR_DOMAIN_ARGUMENTS,
126
+ LIBCERROR_ARGUMENT_ERROR_VALUE_EXCEEDS_MAXIMUM,
127
+ "%s: invalid compressed data size value exceeds maximum.",
128
+ function );
129
+
130
+ return( -1 );
131
+ }
132
+ if( *uncompressed_data_size > (size_t) SSIZE_MAX )
133
+ {
134
+ libcerror_error_set(
135
+ error,
136
+ LIBCERROR_ERROR_DOMAIN_ARGUMENTS,
137
+ LIBCERROR_ARGUMENT_ERROR_VALUE_EXCEEDS_MAXIMUM,
138
+ "%s: invalid uncompressed data size value exceeds maximum.",
139
+ function );
140
+
141
+ return( -1 );
142
+ }
143
+ if( ( compressed_data_size - 1 ) > *uncompressed_data_size )
144
+ {
145
+ libcerror_error_set(
146
+ error,
147
+ LIBCERROR_ERROR_DOMAIN_RUNTIME,
148
+ LIBCERROR_RUNTIME_ERROR_VALUE_OUT_OF_BOUNDS,
149
+ "%s: compressed data size value exceeds uncompressed data size.",
150
+ function );
151
+
152
+ return( -1 );
153
+ }
154
+ *uncompressed_data_size = compressed_data_size - 1;
155
+
156
+ if( memory_copy(
157
+ uncompressed_data,
158
+ &( compressed_data[ 1 ] ),
159
+ *uncompressed_data_size ) == NULL )
160
+ {
161
+ libcerror_error_set(
162
+ error,
163
+ LIBCERROR_ERROR_DOMAIN_MEMORY,
164
+ LIBCERROR_MEMORY_ERROR_COPY_FAILED,
165
+ "%s: unable to copy compressed to uncompressed data.",
166
+ function );
167
+
168
+ return( -1 );
169
+ }
170
+ return( 1 );
171
+ }
172
+ if( compression_method == LIBFSHFS_COMPRESSION_METHOD_DEFLATE )
173
+ {
174
+ #if ( defined( HAVE_ZLIB ) && defined( HAVE_ZLIB_UNCOMPRESS ) ) || defined( ZLIB_DLL )
175
+ if( compressed_data_size > (size_t) ULONG_MAX )
176
+ {
177
+ libcerror_error_set(
178
+ error,
179
+ LIBCERROR_ERROR_DOMAIN_ARGUMENTS,
180
+ LIBCERROR_ARGUMENT_ERROR_VALUE_EXCEEDS_MAXIMUM,
181
+ "%s: invalid compressed data size value exceeds maximum.",
182
+ function );
183
+
184
+ return( -1 );
185
+ }
186
+ if( *uncompressed_data_size > (size_t) ULONG_MAX )
187
+ {
188
+ libcerror_error_set(
189
+ error,
190
+ LIBCERROR_ERROR_DOMAIN_ARGUMENTS,
191
+ LIBCERROR_ARGUMENT_ERROR_VALUE_EXCEEDS_MAXIMUM,
192
+ "%s: invalid uncompressed data size value exceeds maximum.",
193
+ function );
194
+
195
+ return( -1 );
196
+ }
197
+ zlib_uncompressed_data_size = (uLongf) *uncompressed_data_size;
198
+
199
+ result = uncompress(
200
+ (Bytef *) uncompressed_data,
201
+ &zlib_uncompressed_data_size,
202
+ (Bytef *) compressed_data,
203
+ (uLong) compressed_data_size );
204
+
205
+ if( result == Z_OK )
206
+ {
207
+ *uncompressed_data_size = (size_t) zlib_uncompressed_data_size;
208
+
209
+ result = 1;
210
+ }
211
+ else if( result == Z_DATA_ERROR )
212
+ {
213
+ #if defined( HAVE_DEBUG_OUTPUT )
214
+ if( libcnotify_verbose != 0 )
215
+ {
216
+ libcnotify_printf(
217
+ "%s: unable to read compressed data: data error.\n",
218
+ function );
219
+ }
220
+ #endif
221
+ *uncompressed_data_size = 0;
222
+
223
+ result = -1;
224
+ }
225
+ else if( result == Z_BUF_ERROR )
226
+ {
227
+ #if defined( HAVE_DEBUG_OUTPUT )
228
+ if( libcnotify_verbose != 0 )
229
+ {
230
+ libcnotify_printf(
231
+ "%s: unable to read compressed data: target buffer too small.\n",
232
+ function );
233
+ }
234
+ #endif
235
+ /* Estimate that a factor 2 enlargement should suffice
236
+ */
237
+ *uncompressed_data_size *= 2;
238
+
239
+ result = 0;
240
+ }
241
+ else if( result == Z_MEM_ERROR )
242
+ {
243
+ libcerror_error_set(
244
+ error,
245
+ LIBCERROR_ERROR_DOMAIN_MEMORY,
246
+ LIBCERROR_MEMORY_ERROR_INSUFFICIENT,
247
+ "%s: unable to read compressed data: insufficient memory.",
248
+ function );
249
+
250
+ *uncompressed_data_size = 0;
251
+
252
+ result = -1;
253
+ }
254
+ else
255
+ {
256
+ libcerror_error_set(
257
+ error,
258
+ LIBCERROR_ERROR_DOMAIN_COMPRESSION,
259
+ LIBCERROR_COMPRESSION_ERROR_DECOMPRESS_FAILED,
260
+ "%s: zlib returned undefined error: %d.",
261
+ function,
262
+ result );
263
+
264
+ *uncompressed_data_size = 0;
265
+
266
+ result = -1;
267
+ }
268
+ #else
269
+ result = libfshfs_deflate_decompress_zlib(
270
+ compressed_data,
271
+ compressed_data_size,
272
+ uncompressed_data,
273
+ uncompressed_data_size,
274
+ error );
275
+
276
+ if( result != 1 )
277
+ {
278
+ libcerror_error_set(
279
+ error,
280
+ LIBCERROR_ERROR_DOMAIN_ENCRYPTION,
281
+ LIBCERROR_ENCRYPTION_ERROR_GENERIC,
282
+ "%s: unable to decompress DEFLATE compressed data.",
283
+ function );
284
+
285
+ return( -1 );
286
+ }
287
+ #endif /* ( defined( HAVE_ZLIB ) && defined( HAVE_ZLIB_UNCOMPRESS ) ) || defined( ZLIB_DLL ) */
288
+ }
289
+ else if( compression_method == LIBFSHFS_COMPRESSION_METHOD_LZFSE )
290
+ {
291
+ result = libfmos_lzfse_decompress(
292
+ compressed_data,
293
+ compressed_data_size,
294
+ uncompressed_data,
295
+ uncompressed_data_size,
296
+ error );
297
+
298
+ if( result != 1 )
299
+ {
300
+ libcerror_error_set(
301
+ error,
302
+ LIBCERROR_ERROR_DOMAIN_ENCRYPTION,
303
+ LIBCERROR_ENCRYPTION_ERROR_GENERIC,
304
+ "%s: unable to decompress LZFSE compressed data.",
305
+ function );
306
+
307
+ return( -1 );
308
+ }
309
+ }
310
+ else if( compression_method == LIBFSHFS_COMPRESSION_METHOD_LZVN )
311
+ {
312
+ result = libfmos_lzvn_decompress(
313
+ compressed_data,
314
+ compressed_data_size,
315
+ uncompressed_data,
316
+ uncompressed_data_size,
317
+ error );
318
+
319
+ if( result != 1 )
320
+ {
321
+ libcerror_error_set(
322
+ error,
323
+ LIBCERROR_ERROR_DOMAIN_ENCRYPTION,
324
+ LIBCERROR_ENCRYPTION_ERROR_GENERIC,
325
+ "%s: unable to decompress LZVN compressed data.",
326
+ function );
327
+
328
+ return( -1 );
329
+ }
330
+ }
331
+ else if( compression_method == LIBFSHFS_COMPRESSION_METHOD_RAW )
332
+ {
333
+ libcerror_error_set(
334
+ error,
335
+ LIBCERROR_ERROR_DOMAIN_RUNTIME,
336
+ LIBCERROR_RUNTIME_ERROR_UNSUPPORTED_VALUE,
337
+ "%s: invalid raw compressed data - unsupported marker byte.",
338
+ function );
339
+
340
+ return( -1 );
341
+ }
342
+ else
343
+ {
344
+ libcerror_error_set(
345
+ error,
346
+ LIBCERROR_ERROR_DOMAIN_RUNTIME,
347
+ LIBCERROR_RUNTIME_ERROR_UNSUPPORTED_VALUE,
348
+ "%s: unsupported compression method.",
349
+ function );
350
+
351
+ return( -1 );
352
+ }
353
+ return( result );
354
+ }
355
+
@@ -37,11 +37,11 @@
37
37
  * for local use of libfshfs
38
38
  */
39
39
  #else
40
- #define LIBFSHFS_VERSION 20260730
40
+ #define LIBFSHFS_VERSION 20260826
41
41
 
42
42
  /* The version string
43
43
  */
44
- #define LIBFSHFS_VERSION_STRING "20260730"
44
+ #define LIBFSHFS_VERSION_STRING "20260826"
45
45
 
46
46
  /* The file access
47
47
  * bit 1 set to 1 for read access
@@ -141,10 +141,11 @@ enum LIBFSHFS_COMPRESSION_METHODS
141
141
  {
142
142
  LIBFSHFS_COMPRESSION_METHOD_NONE = 0,
143
143
  LIBFSHFS_COMPRESSION_METHOD_DEFLATE = 1,
144
- LIBFSHFS_COMPRESSION_METHOD_LZFSE = 2,
145
- LIBFSHFS_COMPRESSION_METHOD_LZVN = 3,
146
-
147
- LIBFSHFS_COMPRESSION_METHOD_UNKNOWN5 = 5
144
+ LIBFSHFS_COMPRESSION_METHOD_LZBITMAP = 2,
145
+ LIBFSHFS_COMPRESSION_METHOD_LZFSE = 3,
146
+ LIBFSHFS_COMPRESSION_METHOD_LZVN = 4,
147
+ LIBFSHFS_COMPRESSION_METHOD_RAW = 5,
148
+ LIBFSHFS_COMPRESSION_METHOD_UNKNOWN5 = 6
148
149
  };
149
150
 
150
151
  #define LIBFSHFS_ROOT_DIRECTORY_IDENTIFIER 2