libfsxfs-python 20240501__tar.gz → 20260702__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 (1624) hide show
  1. libfsxfs_python-20260702/AUTHORS +4 -0
  2. {libfsxfs-20240501 → libfsxfs_python-20260702}/INSTALL +0 -0
  3. libfsxfs_python-20260702/Makefile.am +107 -0
  4. libfsxfs_python-20260702/Makefile.in +1241 -0
  5. libfsxfs_python-20260702/PKG-INFO +38 -0
  6. libfsxfs_python-20260702/README +21 -0
  7. libfsxfs_python-20260702/_build.py +275 -0
  8. libfsxfs_python-20260702/acinclude.m4 +36 -0
  9. libfsxfs_python-20260702/aclocal.m4 +1550 -0
  10. libfsxfs_python-20260702/common/Makefile.in +805 -0
  11. libfsxfs_python-20260702/common/byte_stream.h +312 -0
  12. libfsxfs_python-20260702/common/common.h +43 -0
  13. libfsxfs_python-20260702/common/config.h +671 -0
  14. libfsxfs_python-20260702/common/config.h.in +670 -0
  15. libfsxfs_python-20260702/common/config_borlandc.h +26 -0
  16. libfsxfs_python-20260702/common/config_msc.h +34 -0
  17. libfsxfs_python-20260702/common/config_winapi.h +97 -0
  18. libfsxfs_python-20260702/common/file_stream.h +151 -0
  19. libfsxfs_python-20260702/common/memory.h +129 -0
  20. libfsxfs_python-20260702/common/narrow_string.h +187 -0
  21. libfsxfs_python-20260702/common/system_string.h +154 -0
  22. libfsxfs_python-20260702/common/types.h +392 -0
  23. libfsxfs_python-20260702/common/types.h.in +392 -0
  24. libfsxfs_python-20260702/common/wide_string.h +175 -0
  25. libfsxfs_python-20260702/config.guess +1754 -0
  26. libfsxfs_python-20260702/config.sub +1890 -0
  27. libfsxfs_python-20260702/configure +65970 -0
  28. libfsxfs_python-20260702/configure.ac +262 -0
  29. libfsxfs_python-20260702/dpkg/changelog +5 -0
  30. libfsxfs_python-20260702/dpkg/compat +1 -0
  31. libfsxfs_python-20260702/dpkg/control +65 -0
  32. libfsxfs_python-20260702/dpkg/copyright +25 -0
  33. libfsxfs_python-20260702/dpkg/rules +31 -0
  34. libfsxfs_python-20260702/fsxfstools/Makefile.am +114 -0
  35. libfsxfs_python-20260702/fsxfstools/Makefile.in +1059 -0
  36. libfsxfs_python-20260702/fsxfstools/digest_hash.c +129 -0
  37. libfsxfs_python-20260702/fsxfstools/digest_hash.h +46 -0
  38. libfsxfs_python-20260702/fsxfstools/fsxfsinfo.c +507 -0
  39. libfsxfs_python-20260702/fsxfstools/fsxfsmount.c +696 -0
  40. libfsxfs_python-20260702/fsxfstools/fsxfstools_getopt.c +572 -0
  41. libfsxfs_python-20260702/fsxfstools/fsxfstools_getopt.h +106 -0
  42. libfsxfs_python-20260702/fsxfstools/fsxfstools_i18n.h +48 -0
  43. libfsxfs_python-20260702/fsxfstools/fsxfstools_libbfio.h +58 -0
  44. libfsxfs_python-20260702/fsxfstools/fsxfstools_libcerror.h +50 -0
  45. libfsxfs_python-20260702/fsxfstools/fsxfstools_libclocale.h +50 -0
  46. libfsxfs_python-20260702/fsxfstools/fsxfstools_libcnotify.h +50 -0
  47. libfsxfs_python-20260702/fsxfstools/fsxfstools_libcpath.h +48 -0
  48. libfsxfs_python-20260702/fsxfstools/fsxfstools_libfcache.h +50 -0
  49. libfsxfs_python-20260702/fsxfstools/fsxfstools_libfdata.h +54 -0
  50. libfsxfs_python-20260702/fsxfstools/fsxfstools_libfdatetime.h +56 -0
  51. libfsxfs_python-20260702/fsxfstools/fsxfstools_libfsxfs.h +30 -0
  52. libfsxfs_python-20260702/fsxfstools/fsxfstools_libhmac.h +51 -0
  53. libfsxfs_python-20260702/fsxfstools/fsxfstools_libuna.h +60 -0
  54. libfsxfs_python-20260702/fsxfstools/fsxfstools_output.c +187 -0
  55. libfsxfs_python-20260702/fsxfstools/fsxfstools_output.h +55 -0
  56. libfsxfs_python-20260702/fsxfstools/fsxfstools_signal.c +262 -0
  57. libfsxfs_python-20260702/fsxfstools/fsxfstools_signal.h +72 -0
  58. libfsxfs_python-20260702/fsxfstools/fsxfstools_unused.h +50 -0
  59. libfsxfs_python-20260702/fsxfstools/info_handle.c +2969 -0
  60. libfsxfs_python-20260702/fsxfstools/info_handle.h +186 -0
  61. libfsxfs_python-20260702/fsxfstools/mount_dokan.c +1575 -0
  62. libfsxfs_python-20260702/fsxfstools/mount_dokan.h +181 -0
  63. libfsxfs_python-20260702/fsxfstools/mount_file_entry.c +985 -0
  64. libfsxfs_python-20260702/fsxfstools/mount_file_entry.h +139 -0
  65. libfsxfs_python-20260702/fsxfstools/mount_file_system.c +595 -0
  66. libfsxfs_python-20260702/fsxfstools/mount_file_system.h +94 -0
  67. libfsxfs_python-20260702/fsxfstools/mount_fuse.c +1977 -0
  68. libfsxfs_python-20260702/fsxfstools/mount_fuse.h +180 -0
  69. libfsxfs_python-20260702/fsxfstools/mount_handle.c +897 -0
  70. libfsxfs_python-20260702/fsxfstools/mount_handle.h +138 -0
  71. libfsxfs_python-20260702/fsxfstools/mount_path_string.c +801 -0
  72. libfsxfs_python-20260702/fsxfstools/mount_path_string.h +59 -0
  73. libfsxfs_python-20260702/include/Makefile.in +867 -0
  74. libfsxfs_python-20260702/include/libfsxfs/codepage.h +122 -0
  75. libfsxfs_python-20260702/include/libfsxfs/definitions.h +80 -0
  76. libfsxfs_python-20260702/include/libfsxfs/definitions.h.in +80 -0
  77. libfsxfs_python-20260702/include/libfsxfs/error.h +291 -0
  78. libfsxfs_python-20260702/include/libfsxfs/extern.h +47 -0
  79. libfsxfs_python-20260702/include/libfsxfs/features.h +50 -0
  80. libfsxfs_python-20260702/include/libfsxfs/features.h.in +50 -0
  81. libfsxfs_python-20260702/include/libfsxfs/types.h +213 -0
  82. libfsxfs_python-20260702/include/libfsxfs/types.h.in +213 -0
  83. libfsxfs_python-20260702/include/libfsxfs.h +882 -0
  84. libfsxfs_python-20260702/include/libfsxfs.h.in +882 -0
  85. libfsxfs_python-20260702/libbfio/Makefile.in +968 -0
  86. libfsxfs_python-20260702/libbfio/libbfio_codepage.h +90 -0
  87. libfsxfs_python-20260702/libbfio/libbfio_definitions.h +89 -0
  88. libfsxfs_python-20260702/libbfio/libbfio_error.c +111 -0
  89. libfsxfs_python-20260702/libbfio/libbfio_error.h +74 -0
  90. libfsxfs_python-20260702/libbfio/libbfio_extern.h +53 -0
  91. libfsxfs_python-20260702/libbfio/libbfio_file.c +444 -0
  92. libfsxfs_python-20260702/libbfio/libbfio_file.h +90 -0
  93. libfsxfs_python-20260702/libbfio/libbfio_file_io_handle.c +1198 -0
  94. libfsxfs_python-20260702/libbfio/libbfio_file_io_handle.h +152 -0
  95. libfsxfs_python-20260702/libbfio/libbfio_file_pool.c +494 -0
  96. libfsxfs_python-20260702/libbfio/libbfio_file_pool.h +81 -0
  97. libfsxfs_python-20260702/libbfio/libbfio_file_range.c +468 -0
  98. libfsxfs_python-20260702/libbfio/libbfio_file_range.h +104 -0
  99. libfsxfs_python-20260702/libbfio/libbfio_file_range_io_handle.c +1158 -0
  100. libfsxfs_python-20260702/libbfio/libbfio_file_range_io_handle.h +160 -0
  101. libfsxfs_python-20260702/libbfio/libbfio_handle.c +2708 -0
  102. libfsxfs_python-20260702/libbfio/libbfio_handle.h +363 -0
  103. libfsxfs_python-20260702/libbfio/libbfio_libcdata.h +54 -0
  104. libfsxfs_python-20260702/libbfio/libbfio_libcerror.h +50 -0
  105. libfsxfs_python-20260702/libbfio/libbfio_libcfile.h +50 -0
  106. libfsxfs_python-20260702/libbfio/libbfio_libclocale.h +50 -0
  107. libfsxfs_python-20260702/libbfio/libbfio_libcpath.h +48 -0
  108. libfsxfs_python-20260702/libbfio/libbfio_libcthreads.h +64 -0
  109. libfsxfs_python-20260702/libbfio/libbfio_libuna.h +60 -0
  110. libfsxfs_python-20260702/libbfio/libbfio_memory_range.c +205 -0
  111. libfsxfs_python-20260702/libbfio/libbfio_memory_range.h +60 -0
  112. libfsxfs_python-20260702/libbfio/libbfio_memory_range_io_handle.c +871 -0
  113. libfsxfs_python-20260702/libbfio/libbfio_memory_range_io_handle.h +129 -0
  114. libfsxfs_python-20260702/libbfio/libbfio_pool.c +3523 -0
  115. libfsxfs_python-20260702/libbfio/libbfio_pool.h +275 -0
  116. libfsxfs_python-20260702/libbfio/libbfio_support.c +93 -0
  117. libfsxfs_python-20260702/libbfio/libbfio_support.h +58 -0
  118. libfsxfs_python-20260702/libbfio/libbfio_system_string.c +1017 -0
  119. libfsxfs_python-20260702/libbfio/libbfio_system_string.h +95 -0
  120. libfsxfs_python-20260702/libbfio/libbfio_types.h +49 -0
  121. libfsxfs_python-20260702/libbfio/libbfio_unused.h +44 -0
  122. libfsxfs_python-20260702/libcdata/Makefile.in +947 -0
  123. libfsxfs_python-20260702/libcdata/libcdata_array.c +2015 -0
  124. libfsxfs_python-20260702/libcdata/libcdata_array.h +200 -0
  125. libfsxfs_python-20260702/libcdata/libcdata_btree.c +964 -0
  126. libfsxfs_python-20260702/libcdata/libcdata_btree.h +141 -0
  127. libfsxfs_python-20260702/libcdata/libcdata_btree_node.c +1607 -0
  128. libfsxfs_python-20260702/libcdata/libcdata_btree_node.h +101 -0
  129. libfsxfs_python-20260702/libcdata/libcdata_btree_values_list.c +217 -0
  130. libfsxfs_python-20260702/libcdata/libcdata_btree_values_list.h +55 -0
  131. libfsxfs_python-20260702/libcdata/libcdata_definitions.h +81 -0
  132. libfsxfs_python-20260702/libcdata/libcdata_error.c +111 -0
  133. libfsxfs_python-20260702/libcdata/libcdata_error.h +74 -0
  134. libfsxfs_python-20260702/libcdata/libcdata_extern.h +53 -0
  135. libfsxfs_python-20260702/libcdata/libcdata_libcerror.h +50 -0
  136. libfsxfs_python-20260702/libcdata/libcdata_libcthreads.h +64 -0
  137. libfsxfs_python-20260702/libcdata/libcdata_list.c +2906 -0
  138. libfsxfs_python-20260702/libcdata/libcdata_list.h +235 -0
  139. libfsxfs_python-20260702/libcdata/libcdata_list_element.c +926 -0
  140. libfsxfs_python-20260702/libcdata/libcdata_list_element.h +142 -0
  141. libfsxfs_python-20260702/libcdata/libcdata_range_list.c +4922 -0
  142. libfsxfs_python-20260702/libcdata/libcdata_range_list.h +382 -0
  143. libfsxfs_python-20260702/libcdata/libcdata_range_list_value.c +429 -0
  144. libfsxfs_python-20260702/libcdata/libcdata_range_list_value.h +100 -0
  145. libfsxfs_python-20260702/libcdata/libcdata_support.c +39 -0
  146. libfsxfs_python-20260702/libcdata/libcdata_support.h +47 -0
  147. libfsxfs_python-20260702/libcdata/libcdata_tree_node.c +4271 -0
  148. libfsxfs_python-20260702/libcdata/libcdata_tree_node.h +308 -0
  149. libfsxfs_python-20260702/libcdata/libcdata_types.h +57 -0
  150. libfsxfs_python-20260702/libcdata/libcdata_unused.h +44 -0
  151. libfsxfs_python-20260702/libcerror/Makefile.in +889 -0
  152. libfsxfs_python-20260702/libcerror/libcerror_definitions.h +326 -0
  153. libfsxfs_python-20260702/libcerror/libcerror_error.c +827 -0
  154. libfsxfs_python-20260702/libcerror/libcerror_error.h +125 -0
  155. libfsxfs_python-20260702/libcerror/libcerror_extern.h +53 -0
  156. libfsxfs_python-20260702/libcerror/libcerror_support.c +39 -0
  157. libfsxfs_python-20260702/libcerror/libcerror_support.h +47 -0
  158. libfsxfs_python-20260702/libcerror/libcerror_system.c +569 -0
  159. libfsxfs_python-20260702/libcerror/libcerror_system.h +78 -0
  160. libfsxfs_python-20260702/libcerror/libcerror_types.h +51 -0
  161. libfsxfs_python-20260702/libcerror/libcerror_unused.h +44 -0
  162. libfsxfs_python-20260702/libcfile/Makefile.in +916 -0
  163. libfsxfs_python-20260702/libcfile/libcfile_definitions.h +101 -0
  164. libfsxfs_python-20260702/libcfile/libcfile_error.c +111 -0
  165. libfsxfs_python-20260702/libcfile/libcfile_error.h +74 -0
  166. libfsxfs_python-20260702/libcfile/libcfile_extern.h +53 -0
  167. libfsxfs_python-20260702/libcfile/libcfile_file.c +4831 -0
  168. libfsxfs_python-20260702/libcfile/libcfile_file.h +273 -0
  169. libfsxfs_python-20260702/libcfile/libcfile_libcerror.h +50 -0
  170. libfsxfs_python-20260702/libcfile/libcfile_libclocale.h +50 -0
  171. libfsxfs_python-20260702/libcfile/libcfile_libcnotify.h +50 -0
  172. libfsxfs_python-20260702/libcfile/libcfile_libuna.h +60 -0
  173. libfsxfs_python-20260702/libcfile/libcfile_notify.c +120 -0
  174. libfsxfs_python-20260702/libcfile/libcfile_notify.h +63 -0
  175. libfsxfs_python-20260702/libcfile/libcfile_support.c +1171 -0
  176. libfsxfs_python-20260702/libcfile/libcfile_support.h +98 -0
  177. libfsxfs_python-20260702/libcfile/libcfile_system_string.c +1017 -0
  178. libfsxfs_python-20260702/libcfile/libcfile_system_string.h +95 -0
  179. libfsxfs_python-20260702/libcfile/libcfile_types.h +47 -0
  180. libfsxfs_python-20260702/libcfile/libcfile_unused.h +44 -0
  181. libfsxfs_python-20260702/libcfile/libcfile_winapi.c +815 -0
  182. libfsxfs_python-20260702/libcfile/libcfile_winapi.h +122 -0
  183. libfsxfs_python-20260702/libclocale/Makefile.in +899 -0
  184. libfsxfs_python-20260702/libclocale/libclocale_codepage.c +950 -0
  185. libfsxfs_python-20260702/libclocale/libclocale_codepage.h +73 -0
  186. libfsxfs_python-20260702/libclocale/libclocale_definitions.h +106 -0
  187. libfsxfs_python-20260702/libclocale/libclocale_extern.h +53 -0
  188. libfsxfs_python-20260702/libclocale/libclocale_libcerror.h +50 -0
  189. libfsxfs_python-20260702/libclocale/libclocale_locale.c +494 -0
  190. libfsxfs_python-20260702/libclocale/libclocale_locale.h +66 -0
  191. libfsxfs_python-20260702/libclocale/libclocale_support.c +130 -0
  192. libfsxfs_python-20260702/libclocale/libclocale_support.h +55 -0
  193. libfsxfs_python-20260702/libclocale/libclocale_unused.h +44 -0
  194. libfsxfs_python-20260702/libclocale/libclocale_wide_string.c +69 -0
  195. libfsxfs_python-20260702/libclocale/libclocale_wide_string.h +54 -0
  196. libfsxfs_python-20260702/libcnotify/Makefile.in +897 -0
  197. libfsxfs_python-20260702/libcnotify/libcnotify_definitions.h +54 -0
  198. libfsxfs_python-20260702/libcnotify/libcnotify_extern.h +53 -0
  199. libfsxfs_python-20260702/libcnotify/libcnotify_libcerror.h +50 -0
  200. libfsxfs_python-20260702/libcnotify/libcnotify_print.c +386 -0
  201. libfsxfs_python-20260702/libcnotify/libcnotify_print.h +68 -0
  202. libfsxfs_python-20260702/libcnotify/libcnotify_stream.c +182 -0
  203. libfsxfs_python-20260702/libcnotify/libcnotify_stream.h +59 -0
  204. libfsxfs_python-20260702/libcnotify/libcnotify_support.c +39 -0
  205. libfsxfs_python-20260702/libcnotify/libcnotify_support.h +49 -0
  206. libfsxfs_python-20260702/libcnotify/libcnotify_unused.h +44 -0
  207. libfsxfs_python-20260702/libcnotify/libcnotify_verbose.c +38 -0
  208. libfsxfs_python-20260702/libcnotify/libcnotify_verbose.h +46 -0
  209. libfsxfs_python-20260702/libcpath/Makefile.in +901 -0
  210. libfsxfs_python-20260702/libcpath/libcpath_definitions.h +79 -0
  211. libfsxfs_python-20260702/libcpath/libcpath_error.c +111 -0
  212. libfsxfs_python-20260702/libcpath/libcpath_error.h +74 -0
  213. libfsxfs_python-20260702/libcpath/libcpath_extern.h +53 -0
  214. libfsxfs_python-20260702/libcpath/libcpath_libcerror.h +50 -0
  215. libfsxfs_python-20260702/libcpath/libcpath_libclocale.h +50 -0
  216. libfsxfs_python-20260702/libcpath/libcpath_libcsplit.h +52 -0
  217. libfsxfs_python-20260702/libcpath/libcpath_libuna.h +60 -0
  218. libfsxfs_python-20260702/libcpath/libcpath_path.c +7508 -0
  219. libfsxfs_python-20260702/libcpath/libcpath_path.h +293 -0
  220. libfsxfs_python-20260702/libcpath/libcpath_support.c +93 -0
  221. libfsxfs_python-20260702/libcpath/libcpath_support.h +58 -0
  222. libfsxfs_python-20260702/libcpath/libcpath_system_string.c +1017 -0
  223. libfsxfs_python-20260702/libcpath/libcpath_system_string.h +95 -0
  224. libfsxfs_python-20260702/libcpath/libcpath_unused.h +44 -0
  225. libfsxfs_python-20260702/libcsplit/Makefile.in +914 -0
  226. libfsxfs_python-20260702/libcsplit/libcsplit_definitions.h +47 -0
  227. libfsxfs_python-20260702/libcsplit/libcsplit_error.c +111 -0
  228. libfsxfs_python-20260702/libcsplit/libcsplit_error.h +74 -0
  229. libfsxfs_python-20260702/libcsplit/libcsplit_extern.h +53 -0
  230. libfsxfs_python-20260702/libcsplit/libcsplit_libcerror.h +50 -0
  231. libfsxfs_python-20260702/libcsplit/libcsplit_narrow_split_string.c +547 -0
  232. libfsxfs_python-20260702/libcsplit/libcsplit_narrow_split_string.h +107 -0
  233. libfsxfs_python-20260702/libcsplit/libcsplit_narrow_string.c +288 -0
  234. libfsxfs_python-20260702/libcsplit/libcsplit_narrow_string.h +49 -0
  235. libfsxfs_python-20260702/libcsplit/libcsplit_support.c +39 -0
  236. libfsxfs_python-20260702/libcsplit/libcsplit_support.h +47 -0
  237. libfsxfs_python-20260702/libcsplit/libcsplit_types.h +49 -0
  238. libfsxfs_python-20260702/libcsplit/libcsplit_unused.h +44 -0
  239. libfsxfs_python-20260702/libcsplit/libcsplit_wide_split_string.c +551 -0
  240. libfsxfs_python-20260702/libcsplit/libcsplit_wide_split_string.h +111 -0
  241. libfsxfs_python-20260702/libcsplit/libcsplit_wide_string.c +292 -0
  242. libfsxfs_python-20260702/libcsplit/libcsplit_wide_string.h +53 -0
  243. libfsxfs_python-20260702/libcthreads/Makefile.in +949 -0
  244. libfsxfs_python-20260702/libcthreads/libcthreads_condition.c +735 -0
  245. libfsxfs_python-20260702/libcthreads/libcthreads_condition.h +120 -0
  246. libfsxfs_python-20260702/libcthreads/libcthreads_definitions.h +84 -0
  247. libfsxfs_python-20260702/libcthreads/libcthreads_error.c +111 -0
  248. libfsxfs_python-20260702/libcthreads/libcthreads_error.h +74 -0
  249. libfsxfs_python-20260702/libcthreads/libcthreads_extern.h +53 -0
  250. libfsxfs_python-20260702/libcthreads/libcthreads_libcerror.h +50 -0
  251. libfsxfs_python-20260702/libcthreads/libcthreads_lock.c +391 -0
  252. libfsxfs_python-20260702/libcthreads/libcthreads_lock.h +88 -0
  253. libfsxfs_python-20260702/libcthreads/libcthreads_mutex.c +601 -0
  254. libfsxfs_python-20260702/libcthreads/libcthreads_mutex.h +98 -0
  255. libfsxfs_python-20260702/libcthreads/libcthreads_queue.c +1150 -0
  256. libfsxfs_python-20260702/libcthreads/libcthreads_queue.h +136 -0
  257. libfsxfs_python-20260702/libcthreads/libcthreads_read_write_lock.c +690 -0
  258. libfsxfs_python-20260702/libcthreads/libcthreads_read_write_lock.h +119 -0
  259. libfsxfs_python-20260702/libcthreads/libcthreads_repeating_thread.c +683 -0
  260. libfsxfs_python-20260702/libcthreads/libcthreads_repeating_thread.h +123 -0
  261. libfsxfs_python-20260702/libcthreads/libcthreads_support.c +39 -0
  262. libfsxfs_python-20260702/libcthreads/libcthreads_support.h +47 -0
  263. libfsxfs_python-20260702/libcthreads/libcthreads_thread.c +411 -0
  264. libfsxfs_python-20260702/libcthreads/libcthreads_thread.h +95 -0
  265. libfsxfs_python-20260702/libcthreads/libcthreads_thread_attributes.c +149 -0
  266. libfsxfs_python-20260702/libcthreads/libcthreads_thread_attributes.h +78 -0
  267. libfsxfs_python-20260702/libcthreads/libcthreads_thread_pool.c +1725 -0
  268. libfsxfs_python-20260702/libcthreads/libcthreads_thread_pool.h +177 -0
  269. libfsxfs_python-20260702/libcthreads/libcthreads_types.h +63 -0
  270. libfsxfs_python-20260702/libcthreads/libcthreads_unused.h +44 -0
  271. libfsxfs_python-20260702/libfcache/Makefile.in +910 -0
  272. libfsxfs_python-20260702/libfcache/libfcache_cache.c +1118 -0
  273. libfsxfs_python-20260702/libfcache/libfcache_cache.h +149 -0
  274. libfsxfs_python-20260702/libfcache/libfcache_cache_value.c +502 -0
  275. libfsxfs_python-20260702/libfcache/libfcache_cache_value.h +132 -0
  276. libfsxfs_python-20260702/libfcache/libfcache_date_time.c +92 -0
  277. libfsxfs_python-20260702/libfcache/libfcache_date_time.h +45 -0
  278. libfsxfs_python-20260702/libfcache/libfcache_definitions.h +58 -0
  279. libfsxfs_python-20260702/libfcache/libfcache_error.c +111 -0
  280. libfsxfs_python-20260702/libfcache/libfcache_error.h +74 -0
  281. libfsxfs_python-20260702/libfcache/libfcache_extern.h +40 -0
  282. libfsxfs_python-20260702/libfcache/libfcache_libcdata.h +54 -0
  283. libfsxfs_python-20260702/libfcache/libfcache_libcerror.h +50 -0
  284. libfsxfs_python-20260702/libfcache/libfcache_support.c +41 -0
  285. libfsxfs_python-20260702/libfcache/libfcache_support.h +47 -0
  286. libfsxfs_python-20260702/libfcache/libfcache_types.h +49 -0
  287. libfsxfs_python-20260702/libfcache/libfcache_unused.h +44 -0
  288. libfsxfs_python-20260702/libfdata/Makefile.in +963 -0
  289. libfsxfs_python-20260702/libfdata/libfdata_area.c +1482 -0
  290. libfsxfs_python-20260702/libfdata/libfdata_area.h +278 -0
  291. libfsxfs_python-20260702/libfdata/libfdata_cache.c +59 -0
  292. libfsxfs_python-20260702/libfdata/libfdata_cache.h +56 -0
  293. libfsxfs_python-20260702/libfdata/libfdata_definitions.h +249 -0
  294. libfsxfs_python-20260702/libfdata/libfdata_error.c +111 -0
  295. libfsxfs_python-20260702/libfdata/libfdata_error.h +74 -0
  296. libfsxfs_python-20260702/libfdata/libfdata_extern.h +40 -0
  297. libfsxfs_python-20260702/libfdata/libfdata_libcdata.h +54 -0
  298. libfsxfs_python-20260702/libfdata/libfdata_libcerror.h +50 -0
  299. libfsxfs_python-20260702/libfdata/libfdata_libcnotify.h +50 -0
  300. libfsxfs_python-20260702/libfdata/libfdata_libfcache.h +50 -0
  301. libfsxfs_python-20260702/libfdata/libfdata_list.c +4426 -0
  302. libfsxfs_python-20260702/libfdata/libfdata_list.h +452 -0
  303. libfsxfs_python-20260702/libfdata/libfdata_list_element.c +824 -0
  304. libfsxfs_python-20260702/libfdata/libfdata_list_element.h +159 -0
  305. libfsxfs_python-20260702/libfdata/libfdata_mapped_range.c +312 -0
  306. libfsxfs_python-20260702/libfdata/libfdata_mapped_range.h +77 -0
  307. libfsxfs_python-20260702/libfdata/libfdata_notify.c +120 -0
  308. libfsxfs_python-20260702/libfdata/libfdata_notify.h +63 -0
  309. libfsxfs_python-20260702/libfdata/libfdata_range.c +358 -0
  310. libfsxfs_python-20260702/libfdata/libfdata_range.h +94 -0
  311. libfsxfs_python-20260702/libfdata/libfdata_range_list.c +1196 -0
  312. libfsxfs_python-20260702/libfdata/libfdata_range_list.h +214 -0
  313. libfsxfs_python-20260702/libfdata/libfdata_segments_array.c +914 -0
  314. libfsxfs_python-20260702/libfdata/libfdata_segments_array.h +94 -0
  315. libfsxfs_python-20260702/libfdata/libfdata_stream.c +2582 -0
  316. libfsxfs_python-20260702/libfdata/libfdata_stream.h +363 -0
  317. libfsxfs_python-20260702/libfdata/libfdata_support.c +41 -0
  318. libfsxfs_python-20260702/libfdata/libfdata_support.h +47 -0
  319. libfsxfs_python-20260702/libfdata/libfdata_types.h +59 -0
  320. libfsxfs_python-20260702/libfdata/libfdata_unused.h +44 -0
  321. libfsxfs_python-20260702/libfdata/libfdata_vector.c +1932 -0
  322. libfsxfs_python-20260702/libfdata/libfdata_vector.h +295 -0
  323. libfsxfs_python-20260702/libfdatetime/Makefile.in +941 -0
  324. libfsxfs_python-20260702/libfdatetime/libfdatetime_date_time_values.c +1906 -0
  325. libfsxfs_python-20260702/libfdatetime/libfdatetime_date_time_values.h +121 -0
  326. libfsxfs_python-20260702/libfdatetime/libfdatetime_definitions.h +121 -0
  327. libfsxfs_python-20260702/libfdatetime/libfdatetime_error.c +111 -0
  328. libfsxfs_python-20260702/libfdatetime/libfdatetime_error.h +74 -0
  329. libfsxfs_python-20260702/libfdatetime/libfdatetime_extern.h +40 -0
  330. libfsxfs_python-20260702/libfdatetime/libfdatetime_fat_date_time.c +1258 -0
  331. libfsxfs_python-20260702/libfdatetime/libfdatetime_fat_date_time.h +172 -0
  332. libfsxfs_python-20260702/libfdatetime/libfdatetime_filetime.c +1465 -0
  333. libfsxfs_python-20260702/libfdatetime/libfdatetime_filetime.h +177 -0
  334. libfsxfs_python-20260702/libfdatetime/libfdatetime_floatingtime.c +1333 -0
  335. libfsxfs_python-20260702/libfdatetime/libfdatetime_floatingtime.h +168 -0
  336. libfsxfs_python-20260702/libfdatetime/libfdatetime_hfs_time.c +1329 -0
  337. libfsxfs_python-20260702/libfdatetime/libfdatetime_hfs_time.h +166 -0
  338. libfsxfs_python-20260702/libfdatetime/libfdatetime_libcerror.h +50 -0
  339. libfsxfs_python-20260702/libfdatetime/libfdatetime_nsf_timedate.c +1373 -0
  340. libfsxfs_python-20260702/libfdatetime/libfdatetime_nsf_timedate.h +177 -0
  341. libfsxfs_python-20260702/libfdatetime/libfdatetime_posix_time.c +1918 -0
  342. libfsxfs_python-20260702/libfdatetime/libfdatetime_posix_time.h +189 -0
  343. libfsxfs_python-20260702/libfdatetime/libfdatetime_support.c +41 -0
  344. libfsxfs_python-20260702/libfdatetime/libfdatetime_support.h +47 -0
  345. libfsxfs_python-20260702/libfdatetime/libfdatetime_systemtime.c +1779 -0
  346. libfsxfs_python-20260702/libfdatetime/libfdatetime_systemtime.h +180 -0
  347. libfsxfs_python-20260702/libfdatetime/libfdatetime_types.h +63 -0
  348. libfsxfs_python-20260702/libfdatetime/libfdatetime_unused.h +44 -0
  349. libfsxfs_python-20260702/libfguid/Makefile.in +891 -0
  350. libfsxfs_python-20260702/libfguid/libfguid_definitions.h +84 -0
  351. libfsxfs_python-20260702/libfguid/libfguid_error.c +111 -0
  352. libfsxfs_python-20260702/libfguid/libfguid_error.h +74 -0
  353. libfsxfs_python-20260702/libfguid/libfguid_extern.h +40 -0
  354. libfsxfs_python-20260702/libfguid/libfguid_identifier.c +2524 -0
  355. libfsxfs_python-20260702/libfguid/libfguid_identifier.h +204 -0
  356. libfsxfs_python-20260702/libfguid/libfguid_libcerror.h +50 -0
  357. libfsxfs_python-20260702/libfguid/libfguid_support.c +41 -0
  358. libfsxfs_python-20260702/libfguid/libfguid_support.h +47 -0
  359. libfsxfs_python-20260702/libfguid/libfguid_types.h +47 -0
  360. libfsxfs_python-20260702/libfguid/libfguid_unused.h +44 -0
  361. libfsxfs_python-20260702/libfsxfs/Makefile.am +126 -0
  362. libfsxfs_python-20260702/libfsxfs/Makefile.in +1223 -0
  363. libfsxfs_python-20260702/libfsxfs/fsxfs_attributes.h +77 -0
  364. libfsxfs_python-20260702/libfsxfs/fsxfs_attributes_block.h +267 -0
  365. libfsxfs_python-20260702/libfsxfs/fsxfs_block_directory.h +97 -0
  366. libfsxfs_python-20260702/libfsxfs/fsxfs_btree.h +232 -0
  367. libfsxfs_python-20260702/libfsxfs/fsxfs_directory_block.h +127 -0
  368. libfsxfs_python-20260702/libfsxfs/fsxfs_file_system_block.h +112 -0
  369. libfsxfs_python-20260702/libfsxfs/fsxfs_inode.h +513 -0
  370. libfsxfs_python-20260702/libfsxfs/fsxfs_inode_information.h +187 -0
  371. libfsxfs_python-20260702/libfsxfs/fsxfs_superblock.h +527 -0
  372. libfsxfs_python-20260702/libfsxfs/libfsxfs.c +84 -0
  373. libfsxfs_python-20260702/libfsxfs/libfsxfs.rc +38 -0
  374. libfsxfs_python-20260702/libfsxfs/libfsxfs.rc.in +38 -0
  375. libfsxfs_python-20260702/libfsxfs/libfsxfs_attribute_values.c +665 -0
  376. libfsxfs_python-20260702/libfsxfs/libfsxfs_attribute_values.h +119 -0
  377. libfsxfs_python-20260702/libfsxfs/libfsxfs_attributes.c +1399 -0
  378. libfsxfs_python-20260702/libfsxfs/libfsxfs_attributes.h +86 -0
  379. libfsxfs_python-20260702/libfsxfs/libfsxfs_attributes_leaf_block_header.c +308 -0
  380. libfsxfs_python-20260702/libfsxfs/libfsxfs_attributes_leaf_block_header.h +64 -0
  381. libfsxfs_python-20260702/libfsxfs/libfsxfs_attributes_table.c +511 -0
  382. libfsxfs_python-20260702/libfsxfs/libfsxfs_attributes_table.h +65 -0
  383. libfsxfs_python-20260702/libfsxfs/libfsxfs_attributes_table_header.c +225 -0
  384. libfsxfs_python-20260702/libfsxfs/libfsxfs_attributes_table_header.h +66 -0
  385. libfsxfs_python-20260702/libfsxfs/libfsxfs_block_data_handle.c +166 -0
  386. libfsxfs_python-20260702/libfsxfs/libfsxfs_block_data_handle.h +61 -0
  387. libfsxfs_python-20260702/libfsxfs/libfsxfs_block_descriptor.c +131 -0
  388. libfsxfs_python-20260702/libfsxfs/libfsxfs_block_descriptor.h +56 -0
  389. libfsxfs_python-20260702/libfsxfs/libfsxfs_block_directory.c +804 -0
  390. libfsxfs_python-20260702/libfsxfs/libfsxfs_block_directory.h +90 -0
  391. libfsxfs_python-20260702/libfsxfs/libfsxfs_block_directory_footer.c +227 -0
  392. libfsxfs_python-20260702/libfsxfs/libfsxfs_block_directory_footer.h +62 -0
  393. libfsxfs_python-20260702/libfsxfs/libfsxfs_block_directory_header.c +386 -0
  394. libfsxfs_python-20260702/libfsxfs/libfsxfs_block_directory_header.h +66 -0
  395. libfsxfs_python-20260702/libfsxfs/libfsxfs_block_tree.c +551 -0
  396. libfsxfs_python-20260702/libfsxfs/libfsxfs_block_tree.h +89 -0
  397. libfsxfs_python-20260702/libfsxfs/libfsxfs_block_tree_node.c +613 -0
  398. libfsxfs_python-20260702/libfsxfs/libfsxfs_block_tree_node.h +109 -0
  399. libfsxfs_python-20260702/libfsxfs/libfsxfs_btree_block.c +427 -0
  400. libfsxfs_python-20260702/libfsxfs/libfsxfs_btree_block.h +95 -0
  401. libfsxfs_python-20260702/libfsxfs/libfsxfs_btree_header.c +458 -0
  402. libfsxfs_python-20260702/libfsxfs/libfsxfs_btree_header.h +73 -0
  403. libfsxfs_python-20260702/libfsxfs/libfsxfs_buffer_data_handle.c +324 -0
  404. libfsxfs_python-20260702/libfsxfs/libfsxfs_buffer_data_handle.h +85 -0
  405. libfsxfs_python-20260702/libfsxfs/libfsxfs_data_stream.c +436 -0
  406. libfsxfs_python-20260702/libfsxfs/libfsxfs_data_stream.h +63 -0
  407. libfsxfs_python-20260702/libfsxfs/libfsxfs_debug.c +790 -0
  408. libfsxfs_python-20260702/libfsxfs/libfsxfs_debug.h +92 -0
  409. libfsxfs_python-20260702/libfsxfs/libfsxfs_definitions.h +137 -0
  410. libfsxfs_python-20260702/libfsxfs/libfsxfs_definitions.h.in +137 -0
  411. libfsxfs_python-20260702/libfsxfs/libfsxfs_directory.c +1745 -0
  412. libfsxfs_python-20260702/libfsxfs/libfsxfs_directory.h +128 -0
  413. libfsxfs_python-20260702/libfsxfs/libfsxfs_directory_entry.c +500 -0
  414. libfsxfs_python-20260702/libfsxfs/libfsxfs_directory_entry.h +108 -0
  415. libfsxfs_python-20260702/libfsxfs/libfsxfs_directory_leaf_block_header.c +273 -0
  416. libfsxfs_python-20260702/libfsxfs/libfsxfs_directory_leaf_block_header.h +62 -0
  417. libfsxfs_python-20260702/libfsxfs/libfsxfs_directory_table.c +539 -0
  418. libfsxfs_python-20260702/libfsxfs/libfsxfs_directory_table.h +67 -0
  419. libfsxfs_python-20260702/libfsxfs/libfsxfs_directory_table_header.c +329 -0
  420. libfsxfs_python-20260702/libfsxfs/libfsxfs_directory_table_header.h +72 -0
  421. libfsxfs_python-20260702/libfsxfs/libfsxfs_error.c +111 -0
  422. libfsxfs_python-20260702/libfsxfs/libfsxfs_error.h +74 -0
  423. libfsxfs_python-20260702/libfsxfs/libfsxfs_extended_attribute.c +1185 -0
  424. libfsxfs_python-20260702/libfsxfs/libfsxfs_extended_attribute.h +177 -0
  425. libfsxfs_python-20260702/libfsxfs/libfsxfs_extent.c +361 -0
  426. libfsxfs_python-20260702/libfsxfs/libfsxfs_extent.h +83 -0
  427. libfsxfs_python-20260702/libfsxfs/libfsxfs_extent_btree.c +771 -0
  428. libfsxfs_python-20260702/libfsxfs/libfsxfs_extent_btree.h +92 -0
  429. libfsxfs_python-20260702/libfsxfs/libfsxfs_extent_list.c +168 -0
  430. libfsxfs_python-20260702/libfsxfs/libfsxfs_extent_list.h +49 -0
  431. libfsxfs_python-20260702/libfsxfs/libfsxfs_extents.c +315 -0
  432. libfsxfs_python-20260702/libfsxfs/libfsxfs_extents.h +54 -0
  433. libfsxfs_python-20260702/libfsxfs/libfsxfs_extern.h +53 -0
  434. libfsxfs_python-20260702/libfsxfs/libfsxfs_file_entry.c +4138 -0
  435. libfsxfs_python-20260702/libfsxfs/libfsxfs_file_entry.h +390 -0
  436. libfsxfs_python-20260702/libfsxfs/libfsxfs_file_system.c +1098 -0
  437. libfsxfs_python-20260702/libfsxfs/libfsxfs_file_system.h +109 -0
  438. libfsxfs_python-20260702/libfsxfs/libfsxfs_file_system_block.c +395 -0
  439. libfsxfs_python-20260702/libfsxfs/libfsxfs_file_system_block.h +82 -0
  440. libfsxfs_python-20260702/libfsxfs/libfsxfs_file_system_block_header.c +314 -0
  441. libfsxfs_python-20260702/libfsxfs/libfsxfs_file_system_block_header.h +72 -0
  442. libfsxfs_python-20260702/libfsxfs/libfsxfs_inode.c +2195 -0
  443. libfsxfs_python-20260702/libfsxfs/libfsxfs_inode.h +249 -0
  444. libfsxfs_python-20260702/libfsxfs/libfsxfs_inode_btree.c +926 -0
  445. libfsxfs_python-20260702/libfsxfs/libfsxfs_inode_btree.h +106 -0
  446. libfsxfs_python-20260702/libfsxfs/libfsxfs_inode_btree_record.c +231 -0
  447. libfsxfs_python-20260702/libfsxfs/libfsxfs_inode_btree_record.h +70 -0
  448. libfsxfs_python-20260702/libfsxfs/libfsxfs_inode_information.c +484 -0
  449. libfsxfs_python-20260702/libfsxfs/libfsxfs_inode_information.h +80 -0
  450. libfsxfs_python-20260702/libfsxfs/libfsxfs_io_handle.c +174 -0
  451. libfsxfs_python-20260702/libfsxfs/libfsxfs_io_handle.h +109 -0
  452. libfsxfs_python-20260702/libfsxfs/libfsxfs_libbfio.h +58 -0
  453. libfsxfs_python-20260702/libfsxfs/libfsxfs_libcdata.h +54 -0
  454. libfsxfs_python-20260702/libfsxfs/libfsxfs_libcerror.h +50 -0
  455. libfsxfs_python-20260702/libfsxfs/libfsxfs_libclocale.h +50 -0
  456. libfsxfs_python-20260702/libfsxfs/libfsxfs_libcnotify.h +50 -0
  457. libfsxfs_python-20260702/libfsxfs/libfsxfs_libcthreads.h +64 -0
  458. libfsxfs_python-20260702/libfsxfs/libfsxfs_libfcache.h +50 -0
  459. libfsxfs_python-20260702/libfsxfs/libfsxfs_libfdata.h +54 -0
  460. libfsxfs_python-20260702/libfsxfs/libfsxfs_libfdatetime.h +56 -0
  461. libfsxfs_python-20260702/libfsxfs/libfsxfs_libfguid.h +49 -0
  462. libfsxfs_python-20260702/libfsxfs/libfsxfs_libuna.h +60 -0
  463. libfsxfs_python-20260702/libfsxfs/libfsxfs_notify.c +120 -0
  464. libfsxfs_python-20260702/libfsxfs/libfsxfs_notify.h +63 -0
  465. libfsxfs_python-20260702/libfsxfs/libfsxfs_superblock.c +1199 -0
  466. libfsxfs_python-20260702/libfsxfs/libfsxfs_superblock.h +165 -0
  467. libfsxfs_python-20260702/libfsxfs/libfsxfs_support.c +430 -0
  468. libfsxfs_python-20260702/libfsxfs/libfsxfs_support.h +82 -0
  469. libfsxfs_python-20260702/libfsxfs/libfsxfs_types.h +51 -0
  470. libfsxfs_python-20260702/libfsxfs/libfsxfs_unused.h +44 -0
  471. libfsxfs_python-20260702/libfsxfs/libfsxfs_volume.c +2514 -0
  472. libfsxfs_python-20260702/libfsxfs/libfsxfs_volume.h +232 -0
  473. libfsxfs_python-20260702/libfsxfs.pc.in +12 -0
  474. libfsxfs_python-20260702/libfsxfs.spec +100 -0
  475. libfsxfs_python-20260702/libfsxfs.spec.in +100 -0
  476. libfsxfs_python-20260702/libhmac/Makefile.in +954 -0
  477. libfsxfs_python-20260702/libhmac/libhmac_byte_stream.h +161 -0
  478. libfsxfs_python-20260702/libhmac/libhmac_definitions.h +56 -0
  479. libfsxfs_python-20260702/libhmac/libhmac_error.c +111 -0
  480. libfsxfs_python-20260702/libhmac/libhmac_error.h +74 -0
  481. libfsxfs_python-20260702/libhmac/libhmac_extern.h +40 -0
  482. libfsxfs_python-20260702/libhmac/libhmac_libcerror.h +50 -0
  483. libfsxfs_python-20260702/libhmac/libhmac_md5.c +715 -0
  484. libfsxfs_python-20260702/libhmac/libhmac_md5.h +84 -0
  485. libfsxfs_python-20260702/libhmac/libhmac_md5_context.c +1292 -0
  486. libfsxfs_python-20260702/libhmac/libhmac_md5_context.h +130 -0
  487. libfsxfs_python-20260702/libhmac/libhmac_sha1.c +715 -0
  488. libfsxfs_python-20260702/libhmac/libhmac_sha1.h +83 -0
  489. libfsxfs_python-20260702/libhmac/libhmac_sha1_context.c +1380 -0
  490. libfsxfs_python-20260702/libhmac/libhmac_sha1_context.h +130 -0
  491. libfsxfs_python-20260702/libhmac/libhmac_sha224.c +715 -0
  492. libfsxfs_python-20260702/libhmac/libhmac_sha224.h +83 -0
  493. libfsxfs_python-20260702/libhmac/libhmac_sha224_context.c +1348 -0
  494. libfsxfs_python-20260702/libhmac/libhmac_sha224_context.h +130 -0
  495. libfsxfs_python-20260702/libhmac/libhmac_sha256.c +715 -0
  496. libfsxfs_python-20260702/libhmac/libhmac_sha256.h +83 -0
  497. libfsxfs_python-20260702/libhmac/libhmac_sha256_context.c +1351 -0
  498. libfsxfs_python-20260702/libhmac/libhmac_sha256_context.h +130 -0
  499. libfsxfs_python-20260702/libhmac/libhmac_sha512.c +715 -0
  500. libfsxfs_python-20260702/libhmac/libhmac_sha512.h +83 -0
  501. libfsxfs_python-20260702/libhmac/libhmac_sha512_context.c +1387 -0
  502. libfsxfs_python-20260702/libhmac/libhmac_sha512_context.h +130 -0
  503. libfsxfs_python-20260702/libhmac/libhmac_support.c +39 -0
  504. libfsxfs_python-20260702/libhmac/libhmac_support.h +47 -0
  505. libfsxfs_python-20260702/libhmac/libhmac_types.h +55 -0
  506. libfsxfs_python-20260702/libhmac/libhmac_unused.h +44 -0
  507. libfsxfs_python-20260702/libuna/Makefile.in +1310 -0
  508. libfsxfs_python-20260702/libuna/libuna_base16_stream.c +1511 -0
  509. libfsxfs_python-20260702/libuna/libuna_base16_stream.h +93 -0
  510. libfsxfs_python-20260702/libuna/libuna_base32_stream.c +3035 -0
  511. libfsxfs_python-20260702/libuna/libuna_base32_stream.h +131 -0
  512. libfsxfs_python-20260702/libuna/libuna_base64_stream.c +2832 -0
  513. libfsxfs_python-20260702/libuna/libuna_base64_stream.h +131 -0
  514. libfsxfs_python-20260702/libuna/libuna_byte_stream.c +633 -0
  515. libfsxfs_python-20260702/libuna/libuna_byte_stream.h +104 -0
  516. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_10.c +73 -0
  517. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_10.h +48 -0
  518. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_13.c +82 -0
  519. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_13.h +48 -0
  520. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_14.c +66 -0
  521. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_14.h +51 -0
  522. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_15.c +46 -0
  523. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_15.h +45 -0
  524. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_16.c +78 -0
  525. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_16.h +57 -0
  526. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_2.c +82 -0
  527. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_2.h +51 -0
  528. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_3.c +79 -0
  529. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_3.h +57 -0
  530. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_4.c +80 -0
  531. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_4.h +48 -0
  532. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_5.c +62 -0
  533. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_5.h +45 -0
  534. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_6.c +58 -0
  535. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_6.h +45 -0
  536. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_7.c +66 -0
  537. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_7.h +48 -0
  538. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_8.c +61 -0
  539. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_8.h +48 -0
  540. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_9.c +50 -0
  541. libfsxfs_python-20260702/libuna/libuna_codepage_iso_8859_9.h +45 -0
  542. libfsxfs_python-20260702/libuna/libuna_codepage_koi8_r.c +392 -0
  543. libfsxfs_python-20260702/libuna/libuna_codepage_koi8_r.h +54 -0
  544. libfsxfs_python-20260702/libuna/libuna_codepage_koi8_u.c +424 -0
  545. libfsxfs_python-20260702/libuna/libuna_codepage_koi8_u.h +54 -0
  546. libfsxfs_python-20260702/libuna/libuna_codepage_mac_arabic.c +352 -0
  547. libfsxfs_python-20260702/libuna/libuna_codepage_mac_arabic.h +54 -0
  548. libfsxfs_python-20260702/libuna/libuna_codepage_mac_celtic.c +395 -0
  549. libfsxfs_python-20260702/libuna/libuna_codepage_mac_celtic.h +54 -0
  550. libfsxfs_python-20260702/libuna/libuna_codepage_mac_centraleurroman.c +319 -0
  551. libfsxfs_python-20260702/libuna/libuna_codepage_mac_centraleurroman.h +54 -0
  552. libfsxfs_python-20260702/libuna/libuna_codepage_mac_croatian.c +378 -0
  553. libfsxfs_python-20260702/libuna/libuna_codepage_mac_croatian.h +54 -0
  554. libfsxfs_python-20260702/libuna/libuna_codepage_mac_cyrillic.c +325 -0
  555. libfsxfs_python-20260702/libuna/libuna_codepage_mac_cyrillic.h +54 -0
  556. libfsxfs_python-20260702/libuna/libuna_codepage_mac_dingbats.c +347 -0
  557. libfsxfs_python-20260702/libuna/libuna_codepage_mac_dingbats.h +54 -0
  558. libfsxfs_python-20260702/libuna/libuna_codepage_mac_farsi.c +372 -0
  559. libfsxfs_python-20260702/libuna/libuna_codepage_mac_farsi.h +54 -0
  560. libfsxfs_python-20260702/libuna/libuna_codepage_mac_gaelic.c +437 -0
  561. libfsxfs_python-20260702/libuna/libuna_codepage_mac_gaelic.h +54 -0
  562. libfsxfs_python-20260702/libuna/libuna_codepage_mac_greek.c +305 -0
  563. libfsxfs_python-20260702/libuna/libuna_codepage_mac_greek.h +54 -0
  564. libfsxfs_python-20260702/libuna/libuna_codepage_mac_icelandic.c +381 -0
  565. libfsxfs_python-20260702/libuna/libuna_codepage_mac_icelandic.h +54 -0
  566. libfsxfs_python-20260702/libuna/libuna_codepage_mac_inuit.c +380 -0
  567. libfsxfs_python-20260702/libuna/libuna_codepage_mac_inuit.h +54 -0
  568. libfsxfs_python-20260702/libuna/libuna_codepage_mac_roman.c +387 -0
  569. libfsxfs_python-20260702/libuna/libuna_codepage_mac_roman.h +54 -0
  570. libfsxfs_python-20260702/libuna/libuna_codepage_mac_romanian.c +396 -0
  571. libfsxfs_python-20260702/libuna/libuna_codepage_mac_romanian.h +54 -0
  572. libfsxfs_python-20260702/libuna/libuna_codepage_mac_russian.c +317 -0
  573. libfsxfs_python-20260702/libuna/libuna_codepage_mac_russian.h +54 -0
  574. libfsxfs_python-20260702/libuna/libuna_codepage_mac_symbol.c +537 -0
  575. libfsxfs_python-20260702/libuna/libuna_codepage_mac_symbol.h +59 -0
  576. libfsxfs_python-20260702/libuna/libuna_codepage_mac_thai.c +330 -0
  577. libfsxfs_python-20260702/libuna/libuna_codepage_mac_thai.h +59 -0
  578. libfsxfs_python-20260702/libuna/libuna_codepage_mac_turkish.c +397 -0
  579. libfsxfs_python-20260702/libuna/libuna_codepage_mac_turkish.h +54 -0
  580. libfsxfs_python-20260702/libuna/libuna_codepage_mac_ukrainian.c +321 -0
  581. libfsxfs_python-20260702/libuna/libuna_codepage_mac_ukrainian.h +54 -0
  582. libfsxfs_python-20260702/libuna/libuna_codepage_windows_1250.c +313 -0
  583. libfsxfs_python-20260702/libuna/libuna_codepage_windows_1250.h +54 -0
  584. libfsxfs_python-20260702/libuna/libuna_codepage_windows_1251.c +301 -0
  585. libfsxfs_python-20260702/libuna/libuna_codepage_windows_1251.h +54 -0
  586. libfsxfs_python-20260702/libuna/libuna_codepage_windows_1252.c +287 -0
  587. libfsxfs_python-20260702/libuna/libuna_codepage_windows_1252.h +54 -0
  588. libfsxfs_python-20260702/libuna/libuna_codepage_windows_1253.c +291 -0
  589. libfsxfs_python-20260702/libuna/libuna_codepage_windows_1253.h +54 -0
  590. libfsxfs_python-20260702/libuna/libuna_codepage_windows_1254.c +348 -0
  591. libfsxfs_python-20260702/libuna/libuna_codepage_windows_1254.h +54 -0
  592. libfsxfs_python-20260702/libuna/libuna_codepage_windows_1255.c +328 -0
  593. libfsxfs_python-20260702/libuna/libuna_codepage_windows_1255.h +54 -0
  594. libfsxfs_python-20260702/libuna/libuna_codepage_windows_1256.c +372 -0
  595. libfsxfs_python-20260702/libuna/libuna_codepage_windows_1256.h +54 -0
  596. libfsxfs_python-20260702/libuna/libuna_codepage_windows_1257.c +303 -0
  597. libfsxfs_python-20260702/libuna/libuna_codepage_windows_1257.h +54 -0
  598. libfsxfs_python-20260702/libuna/libuna_codepage_windows_1258.c +349 -0
  599. libfsxfs_python-20260702/libuna/libuna_codepage_windows_1258.h +54 -0
  600. libfsxfs_python-20260702/libuna/libuna_codepage_windows_874.c +274 -0
  601. libfsxfs_python-20260702/libuna/libuna_codepage_windows_874.h +54 -0
  602. libfsxfs_python-20260702/libuna/libuna_codepage_windows_932.c +4913 -0
  603. libfsxfs_python-20260702/libuna/libuna_codepage_windows_932.h +59 -0
  604. libfsxfs_python-20260702/libuna/libuna_codepage_windows_936.c +7371 -0
  605. libfsxfs_python-20260702/libuna/libuna_codepage_windows_936.h +59 -0
  606. libfsxfs_python-20260702/libuna/libuna_codepage_windows_949.c +8163 -0
  607. libfsxfs_python-20260702/libuna/libuna_codepage_windows_949.h +59 -0
  608. libfsxfs_python-20260702/libuna/libuna_codepage_windows_950.c +6390 -0
  609. libfsxfs_python-20260702/libuna/libuna_codepage_windows_950.h +59 -0
  610. libfsxfs_python-20260702/libuna/libuna_definitions.h +436 -0
  611. libfsxfs_python-20260702/libuna/libuna_error.c +111 -0
  612. libfsxfs_python-20260702/libuna/libuna_error.h +74 -0
  613. libfsxfs_python-20260702/libuna/libuna_extern.h +53 -0
  614. libfsxfs_python-20260702/libuna/libuna_libcerror.h +50 -0
  615. libfsxfs_python-20260702/libuna/libuna_scsu.c +64 -0
  616. libfsxfs_python-20260702/libuna/libuna_scsu.h +45 -0
  617. libfsxfs_python-20260702/libuna/libuna_support.c +39 -0
  618. libfsxfs_python-20260702/libuna/libuna_support.h +49 -0
  619. libfsxfs_python-20260702/libuna/libuna_types.h +53 -0
  620. libfsxfs_python-20260702/libuna/libuna_unicode_character.c +5828 -0
  621. libfsxfs_python-20260702/libuna/libuna_unicode_character.h +260 -0
  622. libfsxfs_python-20260702/libuna/libuna_unused.h +44 -0
  623. libfsxfs_python-20260702/libuna/libuna_url_stream.c +584 -0
  624. libfsxfs_python-20260702/libuna/libuna_url_stream.h +71 -0
  625. libfsxfs_python-20260702/libuna/libuna_utf16_stream.c +815 -0
  626. libfsxfs_python-20260702/libuna/libuna_utf16_stream.h +109 -0
  627. libfsxfs_python-20260702/libuna/libuna_utf16_string.c +3950 -0
  628. libfsxfs_python-20260702/libuna/libuna_utf16_string.h +325 -0
  629. libfsxfs_python-20260702/libuna/libuna_utf32_stream.c +819 -0
  630. libfsxfs_python-20260702/libuna/libuna_utf32_stream.h +109 -0
  631. libfsxfs_python-20260702/libuna/libuna_utf32_string.c +3808 -0
  632. libfsxfs_python-20260702/libuna/libuna_utf32_string.h +321 -0
  633. libfsxfs_python-20260702/libuna/libuna_utf7_stream.c +628 -0
  634. libfsxfs_python-20260702/libuna/libuna_utf7_stream.h +98 -0
  635. libfsxfs_python-20260702/libuna/libuna_utf8_stream.c +748 -0
  636. libfsxfs_python-20260702/libuna/libuna_utf8_stream.h +105 -0
  637. libfsxfs_python-20260702/libuna/libuna_utf8_string.c +4092 -0
  638. libfsxfs_python-20260702/libuna/libuna_utf8_string.h +329 -0
  639. libfsxfs_python-20260702/ltmain.sh +11436 -0
  640. libfsxfs_python-20260702/m4/common.m4 +656 -0
  641. libfsxfs_python-20260702/m4/libbfio.m4 +215 -0
  642. libfsxfs_python-20260702/m4/libcdata.m4 +227 -0
  643. libfsxfs_python-20260702/m4/libcerror.m4 +186 -0
  644. libfsxfs_python-20260702/m4/libcfile.m4 +307 -0
  645. libfsxfs_python-20260702/m4/libclocale.m4 +242 -0
  646. libfsxfs_python-20260702/m4/libcnotify.m4 +160 -0
  647. libfsxfs_python-20260702/m4/libcpath.m4 +274 -0
  648. libfsxfs_python-20260702/m4/libcrypto.m4 +999 -0
  649. libfsxfs_python-20260702/m4/libcsplit.m4 +183 -0
  650. libfsxfs_python-20260702/m4/libcthreads.m4 +214 -0
  651. libfsxfs_python-20260702/m4/libfcache.m4 +173 -0
  652. libfsxfs_python-20260702/m4/libfdata.m4 +241 -0
  653. libfsxfs_python-20260702/m4/libfdatetime.m4 +219 -0
  654. libfsxfs_python-20260702/m4/libfguid.m4 +153 -0
  655. libfsxfs_python-20260702/m4/libhmac.m4 +210 -0
  656. libfsxfs_python-20260702/m4/libtool.m4 +8427 -0
  657. libfsxfs_python-20260702/m4/libuna.m4 +311 -0
  658. {libfsxfs-20240501 → libfsxfs_python-20260702}/m4/ltoptions.m4 +0 -0
  659. {libfsxfs-20240501 → libfsxfs_python-20260702}/m4/ltsugar.m4 +0 -0
  660. {libfsxfs-20240501 → libfsxfs_python-20260702}/m4/ltversion.m4 +0 -0
  661. {libfsxfs-20240501 → libfsxfs_python-20260702}/m4/lt~obsolete.m4 +0 -0
  662. libfsxfs_python-20260702/m4/pthread.m4 +126 -0
  663. libfsxfs_python-20260702/m4/python.m4 +222 -0
  664. libfsxfs_python-20260702/m4/tests.m4 +318 -0
  665. libfsxfs_python-20260702/m4/types.m4 +133 -0
  666. libfsxfs_python-20260702/m4/yaltools.m4 +98 -0
  667. libfsxfs_python-20260702/manuals/Makefile.am +12 -0
  668. libfsxfs_python-20260702/manuals/Makefile.in +834 -0
  669. libfsxfs_python-20260702/manuals/fsxfsinfo.1 +90 -0
  670. libfsxfs_python-20260702/manuals/fsxfsmount.1 +69 -0
  671. libfsxfs_python-20260702/manuals/libfsxfs.3 +745 -0
  672. libfsxfs_python-20260702/msvscpp/Makefile.am +60 -0
  673. libfsxfs_python-20260702/msvscpp/Makefile.in +758 -0
  674. libfsxfs_python-20260702/msvscpp/fsxfs_test_attributes/fsxfs_test_attributes.vcproj +238 -0
  675. libfsxfs_python-20260702/msvscpp/fsxfs_test_block_directory/fsxfs_test_block_directory.vcproj +238 -0
  676. libfsxfs_python-20260702/msvscpp/fsxfs_test_directory_table/fsxfs_test_directory_table.vcproj +226 -0
  677. libfsxfs_python-20260702/msvscpp/fsxfs_test_file_entry/fsxfs_test_file_entry.vcproj +222 -0
  678. libfsxfs_python-20260702/msvscpp/fsxfs_test_file_system_block/fsxfs_test_file_system_block.vcproj +234 -0
  679. libfsxfs_python-20260702/msvscpp/fsxfs_test_tools_mount_path_string/fsxfs_test_tools_mount_path_string.vcproj +222 -0
  680. libfsxfs_python-20260702/msvscpp/fsxfsmount/fsxfsmount.vcproj +308 -0
  681. libfsxfs_python-20260702/msvscpp/libfsxfs/libfsxfs.vcproj +620 -0
  682. libfsxfs_python-20260702/msvscpp/libfsxfs.sln +633 -0
  683. libfsxfs_python-20260702/msvscpp/libhmac/libhmac.vcproj +289 -0
  684. libfsxfs_python-20260702/msvscpp/pyfsxfs/pyfsxfs.vcproj +288 -0
  685. libfsxfs_python-20260702/ossfuzz/Makefile.in +1027 -0
  686. libfsxfs_python-20260702/ossfuzz/extended_attribute_fuzzer.cc +138 -0
  687. libfsxfs_python-20260702/ossfuzz/file_entry_fuzzer.cc +239 -0
  688. libfsxfs_python-20260702/ossfuzz/ossfuzz_libbfio.h +58 -0
  689. libfsxfs_python-20260702/ossfuzz/ossfuzz_libfsxfs.h +30 -0
  690. libfsxfs_python-20260702/ossfuzz/volume_fuzzer.cc +119 -0
  691. libfsxfs_python-20260702/po/Makevars +45 -0
  692. libfsxfs_python-20260702/pyfsxfs/Makefile.am +53 -0
  693. libfsxfs_python-20260702/pyfsxfs/Makefile.in +1083 -0
  694. libfsxfs_python-20260702/pyfsxfs/pyfsxfs.c +714 -0
  695. libfsxfs_python-20260702/pyfsxfs/pyfsxfs.h +71 -0
  696. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_datetime.c +691 -0
  697. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_datetime.h +65 -0
  698. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_error.c +422 -0
  699. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_error.h +60 -0
  700. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_extended_attribute.c +1299 -0
  701. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_extended_attribute.h +110 -0
  702. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_extended_attributes.c +452 -0
  703. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_extended_attributes.h +95 -0
  704. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_file_entries.c +452 -0
  705. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_file_entries.h +95 -0
  706. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_file_entry.c +3162 -0
  707. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_file_entry.h +219 -0
  708. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_file_object_io_handle.c +1524 -0
  709. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_file_object_io_handle.h +141 -0
  710. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_integer.c +399 -0
  711. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_integer.h +56 -0
  712. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_libbfio.h +54 -0
  713. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_libcerror.h +50 -0
  714. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_libfsxfs.h +30 -0
  715. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_python.h +83 -0
  716. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_unused.h +44 -0
  717. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_volume.c +1202 -0
  718. libfsxfs_python-20260702/pyfsxfs/pyfsxfs_volume.h +103 -0
  719. libfsxfs_python-20260702/pyproject.toml +35 -0
  720. libfsxfs_python-20260702/pyproject.toml.in +35 -0
  721. libfsxfs_python-20260702/tests/Makefile.am +646 -0
  722. libfsxfs_python-20260702/tests/Makefile.in +2011 -0
  723. libfsxfs_python-20260702/tests/atlocal.in +29 -0
  724. libfsxfs_python-20260702/tests/fsxfs_test_attribute_values.c +1687 -0
  725. libfsxfs_python-20260702/tests/fsxfs_test_attributes.c +694 -0
  726. libfsxfs_python-20260702/tests/fsxfs_test_attributes_leaf_block_header.c +543 -0
  727. libfsxfs_python-20260702/tests/fsxfs_test_attributes_table.c +568 -0
  728. libfsxfs_python-20260702/tests/fsxfs_test_attributes_table_header.c +474 -0
  729. libfsxfs_python-20260702/tests/fsxfs_test_block_directory.c +1036 -0
  730. libfsxfs_python-20260702/tests/fsxfs_test_block_directory_footer.c +474 -0
  731. libfsxfs_python-20260702/tests/fsxfs_test_block_directory_header.c +474 -0
  732. libfsxfs_python-20260702/tests/fsxfs_test_btree_block.c +901 -0
  733. libfsxfs_python-20260702/tests/fsxfs_test_btree_header.c +570 -0
  734. libfsxfs_python-20260702/tests/fsxfs_test_buffer_data_handle.c +114 -0
  735. libfsxfs_python-20260702/tests/fsxfs_test_directory_entry.c +311 -0
  736. libfsxfs_python-20260702/tests/fsxfs_test_directory_table.c +652 -0
  737. libfsxfs_python-20260702/tests/fsxfs_test_directory_table_header.c +545 -0
  738. libfsxfs_python-20260702/tests/fsxfs_test_error.c +150 -0
  739. libfsxfs_python-20260702/tests/fsxfs_test_extent.c +311 -0
  740. libfsxfs_python-20260702/tests/fsxfs_test_file_entry.c +168 -0
  741. libfsxfs_python-20260702/tests/fsxfs_test_file_system_block.c +894 -0
  742. libfsxfs_python-20260702/tests/fsxfs_test_file_system_block_header.c +545 -0
  743. libfsxfs_python-20260702/tests/fsxfs_test_functions.c +672 -0
  744. libfsxfs_python-20260702/tests/fsxfs_test_functions.h +72 -0
  745. libfsxfs_python-20260702/tests/fsxfs_test_getopt.c +190 -0
  746. libfsxfs_python-20260702/tests/fsxfs_test_getopt.h +68 -0
  747. libfsxfs_python-20260702/tests/fsxfs_test_inode_btree.c +311 -0
  748. libfsxfs_python-20260702/tests/fsxfs_test_inode_btree_record.c +474 -0
  749. libfsxfs_python-20260702/tests/fsxfs_test_inode_information.c +883 -0
  750. libfsxfs_python-20260702/tests/fsxfs_test_io_handle.c +443 -0
  751. libfsxfs_python-20260702/tests/fsxfs_test_libbfio.h +58 -0
  752. libfsxfs_python-20260702/tests/fsxfs_test_libcdata.h +54 -0
  753. libfsxfs_python-20260702/tests/fsxfs_test_libcerror.h +50 -0
  754. libfsxfs_python-20260702/tests/fsxfs_test_libclocale.h +50 -0
  755. libfsxfs_python-20260702/tests/fsxfs_test_libcnotify.h +50 -0
  756. libfsxfs_python-20260702/tests/fsxfs_test_libcpath.h +48 -0
  757. libfsxfs_python-20260702/tests/fsxfs_test_libfsxfs.h +30 -0
  758. libfsxfs_python-20260702/tests/fsxfs_test_libuna.h +60 -0
  759. libfsxfs_python-20260702/tests/fsxfs_test_macros.h +257 -0
  760. libfsxfs_python-20260702/tests/fsxfs_test_memory.c +199 -0
  761. libfsxfs_python-20260702/tests/fsxfs_test_memory.h +66 -0
  762. libfsxfs_python-20260702/tests/fsxfs_test_notify.c +229 -0
  763. libfsxfs_python-20260702/tests/fsxfs_test_superblock.c +750 -0
  764. libfsxfs_python-20260702/tests/fsxfs_test_support.c +833 -0
  765. libfsxfs_python-20260702/tests/fsxfs_test_tools_info_handle.c +304 -0
  766. libfsxfs_python-20260702/tests/fsxfs_test_tools_mount_path_string.c +929 -0
  767. libfsxfs_python-20260702/tests/fsxfs_test_tools_output.c +105 -0
  768. libfsxfs_python-20260702/tests/fsxfs_test_tools_signal.c +213 -0
  769. libfsxfs_python-20260702/tests/fsxfs_test_unused.h +50 -0
  770. libfsxfs_python-20260702/tests/fsxfs_test_volume.c +2279 -0
  771. libfsxfs_python-20260702/tests/generate_test_inputs.sh +301 -0
  772. libfsxfs_python-20260702/tests/package.m4 +5 -0
  773. libfsxfs_python-20260702/tests/pyfsxfs_test_support.py +111 -0
  774. libfsxfs_python-20260702/tests/pyfsxfs_test_volume.py +300 -0
  775. libfsxfs_python-20260702/tests/test_library.at +41 -0
  776. libfsxfs_python-20260702/tests/test_macros.at +188 -0
  777. libfsxfs_python-20260702/tests/test_manpages.at +73 -0
  778. libfsxfs_python-20260702/tests/test_python_module.at +145 -0
  779. libfsxfs_python-20260702/tests/test_tools.at +256 -0
  780. libfsxfs-20240501/AUTHORS +0 -4
  781. libfsxfs-20240501/Makefile.am +0 -105
  782. libfsxfs-20240501/Makefile.in +0 -1228
  783. libfsxfs-20240501/PKG-INFO +0 -13
  784. libfsxfs-20240501/README +0 -21
  785. libfsxfs-20240501/acinclude.m4 +0 -59
  786. libfsxfs-20240501/aclocal.m4 +0 -1549
  787. libfsxfs-20240501/common/Makefile.in +0 -794
  788. libfsxfs-20240501/common/byte_stream.h +0 -257
  789. libfsxfs-20240501/common/common.h +0 -43
  790. libfsxfs-20240501/common/config.h +0 -659
  791. libfsxfs-20240501/common/config.h.in +0 -658
  792. libfsxfs-20240501/common/config_borlandc.h +0 -26
  793. libfsxfs-20240501/common/config_msc.h +0 -34
  794. libfsxfs-20240501/common/config_winapi.h +0 -95
  795. libfsxfs-20240501/common/file_stream.h +0 -151
  796. libfsxfs-20240501/common/memory.h +0 -129
  797. libfsxfs-20240501/common/narrow_string.h +0 -187
  798. libfsxfs-20240501/common/system_string.h +0 -154
  799. libfsxfs-20240501/common/types.h +0 -392
  800. libfsxfs-20240501/common/types.h.in +0 -392
  801. libfsxfs-20240501/common/wide_string.h +0 -175
  802. libfsxfs-20240501/config.guess +0 -1774
  803. libfsxfs-20240501/config.sub +0 -1907
  804. libfsxfs-20240501/configure +0 -64057
  805. libfsxfs-20240501/configure.ac +0 -250
  806. libfsxfs-20240501/dpkg/changelog +0 -5
  807. libfsxfs-20240501/dpkg/compat +0 -1
  808. libfsxfs-20240501/dpkg/control +0 -65
  809. libfsxfs-20240501/dpkg/copyright +0 -25
  810. libfsxfs-20240501/dpkg/rules +0 -31
  811. libfsxfs-20240501/fsxfstools/Makefile.am +0 -108
  812. libfsxfs-20240501/fsxfstools/Makefile.in +0 -1037
  813. libfsxfs-20240501/fsxfstools/digest_hash.c +0 -129
  814. libfsxfs-20240501/fsxfstools/digest_hash.h +0 -46
  815. libfsxfs-20240501/fsxfstools/fsxfsinfo.c +0 -485
  816. libfsxfs-20240501/fsxfstools/fsxfsmount.c +0 -604
  817. libfsxfs-20240501/fsxfstools/fsxfstools_getopt.c +0 -190
  818. libfsxfs-20240501/fsxfstools/fsxfstools_getopt.h +0 -68
  819. libfsxfs-20240501/fsxfstools/fsxfstools_i18n.h +0 -48
  820. libfsxfs-20240501/fsxfstools/fsxfstools_libbfio.h +0 -58
  821. libfsxfs-20240501/fsxfstools/fsxfstools_libcerror.h +0 -50
  822. libfsxfs-20240501/fsxfstools/fsxfstools_libclocale.h +0 -50
  823. libfsxfs-20240501/fsxfstools/fsxfstools_libcnotify.h +0 -50
  824. libfsxfs-20240501/fsxfstools/fsxfstools_libcpath.h +0 -48
  825. libfsxfs-20240501/fsxfstools/fsxfstools_libfcache.h +0 -50
  826. libfsxfs-20240501/fsxfstools/fsxfstools_libfdata.h +0 -54
  827. libfsxfs-20240501/fsxfstools/fsxfstools_libfdatetime.h +0 -56
  828. libfsxfs-20240501/fsxfstools/fsxfstools_libfsxfs.h +0 -30
  829. libfsxfs-20240501/fsxfstools/fsxfstools_libhmac.h +0 -51
  830. libfsxfs-20240501/fsxfstools/fsxfstools_libuna.h +0 -60
  831. libfsxfs-20240501/fsxfstools/fsxfstools_output.c +0 -194
  832. libfsxfs-20240501/fsxfstools/fsxfstools_output.h +0 -55
  833. libfsxfs-20240501/fsxfstools/fsxfstools_signal.c +0 -262
  834. libfsxfs-20240501/fsxfstools/fsxfstools_signal.h +0 -72
  835. libfsxfs-20240501/fsxfstools/fsxfstools_unused.h +0 -50
  836. libfsxfs-20240501/fsxfstools/info_handle.c +0 -2789
  837. libfsxfs-20240501/fsxfstools/info_handle.h +0 -170
  838. libfsxfs-20240501/fsxfstools/mount_dokan.c +0 -1569
  839. libfsxfs-20240501/fsxfstools/mount_dokan.h +0 -171
  840. libfsxfs-20240501/fsxfstools/mount_file_entry.c +0 -985
  841. libfsxfs-20240501/fsxfstools/mount_file_entry.h +0 -139
  842. libfsxfs-20240501/fsxfstools/mount_file_system.c +0 -1277
  843. libfsxfs-20240501/fsxfstools/mount_file_system.h +0 -110
  844. libfsxfs-20240501/fsxfstools/mount_fuse.c +0 -1871
  845. libfsxfs-20240501/fsxfstools/mount_fuse.h +0 -128
  846. libfsxfs-20240501/fsxfstools/mount_handle.c +0 -897
  847. libfsxfs-20240501/fsxfstools/mount_handle.h +0 -138
  848. libfsxfs-20240501/include/Makefile.in +0 -856
  849. libfsxfs-20240501/include/libfsxfs/codepage.h +0 -122
  850. libfsxfs-20240501/include/libfsxfs/definitions.h +0 -80
  851. libfsxfs-20240501/include/libfsxfs/definitions.h.in +0 -80
  852. libfsxfs-20240501/include/libfsxfs/error.h +0 -291
  853. libfsxfs-20240501/include/libfsxfs/extern.h +0 -44
  854. libfsxfs-20240501/include/libfsxfs/features.h +0 -50
  855. libfsxfs-20240501/include/libfsxfs/features.h.in +0 -50
  856. libfsxfs-20240501/include/libfsxfs/types.h +0 -213
  857. libfsxfs-20240501/include/libfsxfs/types.h.in +0 -213
  858. libfsxfs-20240501/include/libfsxfs.h +0 -870
  859. libfsxfs-20240501/include/libfsxfs.h.in +0 -870
  860. libfsxfs-20240501/libbfio/Makefile.in +0 -957
  861. libfsxfs-20240501/libbfio/libbfio_codepage.h +0 -90
  862. libfsxfs-20240501/libbfio/libbfio_definitions.h +0 -89
  863. libfsxfs-20240501/libbfio/libbfio_error.c +0 -111
  864. libfsxfs-20240501/libbfio/libbfio_error.h +0 -74
  865. libfsxfs-20240501/libbfio/libbfio_extern.h +0 -46
  866. libfsxfs-20240501/libbfio/libbfio_file.c +0 -444
  867. libfsxfs-20240501/libbfio/libbfio_file.h +0 -90
  868. libfsxfs-20240501/libbfio/libbfio_file_io_handle.c +0 -1198
  869. libfsxfs-20240501/libbfio/libbfio_file_io_handle.h +0 -152
  870. libfsxfs-20240501/libbfio/libbfio_file_pool.c +0 -494
  871. libfsxfs-20240501/libbfio/libbfio_file_pool.h +0 -81
  872. libfsxfs-20240501/libbfio/libbfio_file_range.c +0 -468
  873. libfsxfs-20240501/libbfio/libbfio_file_range.h +0 -104
  874. libfsxfs-20240501/libbfio/libbfio_file_range_io_handle.c +0 -1158
  875. libfsxfs-20240501/libbfio/libbfio_file_range_io_handle.h +0 -160
  876. libfsxfs-20240501/libbfio/libbfio_handle.c +0 -2708
  877. libfsxfs-20240501/libbfio/libbfio_handle.h +0 -363
  878. libfsxfs-20240501/libbfio/libbfio_libcdata.h +0 -54
  879. libfsxfs-20240501/libbfio/libbfio_libcerror.h +0 -50
  880. libfsxfs-20240501/libbfio/libbfio_libcfile.h +0 -50
  881. libfsxfs-20240501/libbfio/libbfio_libclocale.h +0 -50
  882. libfsxfs-20240501/libbfio/libbfio_libcpath.h +0 -48
  883. libfsxfs-20240501/libbfio/libbfio_libcthreads.h +0 -64
  884. libfsxfs-20240501/libbfio/libbfio_libuna.h +0 -60
  885. libfsxfs-20240501/libbfio/libbfio_memory_range.c +0 -205
  886. libfsxfs-20240501/libbfio/libbfio_memory_range.h +0 -60
  887. libfsxfs-20240501/libbfio/libbfio_memory_range_io_handle.c +0 -871
  888. libfsxfs-20240501/libbfio/libbfio_memory_range_io_handle.h +0 -129
  889. libfsxfs-20240501/libbfio/libbfio_pool.c +0 -3521
  890. libfsxfs-20240501/libbfio/libbfio_pool.h +0 -275
  891. libfsxfs-20240501/libbfio/libbfio_support.c +0 -93
  892. libfsxfs-20240501/libbfio/libbfio_support.h +0 -58
  893. libfsxfs-20240501/libbfio/libbfio_system_string.c +0 -1017
  894. libfsxfs-20240501/libbfio/libbfio_system_string.h +0 -95
  895. libfsxfs-20240501/libbfio/libbfio_types.h +0 -49
  896. libfsxfs-20240501/libbfio/libbfio_unused.h +0 -44
  897. libfsxfs-20240501/libcdata/Makefile.in +0 -936
  898. libfsxfs-20240501/libcdata/libcdata_array.c +0 -2015
  899. libfsxfs-20240501/libcdata/libcdata_array.h +0 -200
  900. libfsxfs-20240501/libcdata/libcdata_btree.c +0 -964
  901. libfsxfs-20240501/libcdata/libcdata_btree.h +0 -141
  902. libfsxfs-20240501/libcdata/libcdata_btree_node.c +0 -1607
  903. libfsxfs-20240501/libcdata/libcdata_btree_node.h +0 -101
  904. libfsxfs-20240501/libcdata/libcdata_btree_values_list.c +0 -217
  905. libfsxfs-20240501/libcdata/libcdata_btree_values_list.h +0 -55
  906. libfsxfs-20240501/libcdata/libcdata_definitions.h +0 -81
  907. libfsxfs-20240501/libcdata/libcdata_error.c +0 -111
  908. libfsxfs-20240501/libcdata/libcdata_error.h +0 -74
  909. libfsxfs-20240501/libcdata/libcdata_extern.h +0 -46
  910. libfsxfs-20240501/libcdata/libcdata_libcerror.h +0 -50
  911. libfsxfs-20240501/libcdata/libcdata_libcthreads.h +0 -64
  912. libfsxfs-20240501/libcdata/libcdata_list.c +0 -2906
  913. libfsxfs-20240501/libcdata/libcdata_list.h +0 -235
  914. libfsxfs-20240501/libcdata/libcdata_list_element.c +0 -926
  915. libfsxfs-20240501/libcdata/libcdata_list_element.h +0 -142
  916. libfsxfs-20240501/libcdata/libcdata_range_list.c +0 -4922
  917. libfsxfs-20240501/libcdata/libcdata_range_list.h +0 -382
  918. libfsxfs-20240501/libcdata/libcdata_range_list_value.c +0 -429
  919. libfsxfs-20240501/libcdata/libcdata_range_list_value.h +0 -100
  920. libfsxfs-20240501/libcdata/libcdata_support.c +0 -39
  921. libfsxfs-20240501/libcdata/libcdata_support.h +0 -47
  922. libfsxfs-20240501/libcdata/libcdata_tree_node.c +0 -4216
  923. libfsxfs-20240501/libcdata/libcdata_tree_node.h +0 -301
  924. libfsxfs-20240501/libcdata/libcdata_types.h +0 -57
  925. libfsxfs-20240501/libcdata/libcdata_unused.h +0 -44
  926. libfsxfs-20240501/libcerror/Makefile.in +0 -878
  927. libfsxfs-20240501/libcerror/libcerror_definitions.h +0 -326
  928. libfsxfs-20240501/libcerror/libcerror_error.c +0 -827
  929. libfsxfs-20240501/libcerror/libcerror_error.h +0 -125
  930. libfsxfs-20240501/libcerror/libcerror_extern.h +0 -46
  931. libfsxfs-20240501/libcerror/libcerror_support.c +0 -39
  932. libfsxfs-20240501/libcerror/libcerror_support.h +0 -47
  933. libfsxfs-20240501/libcerror/libcerror_system.c +0 -587
  934. libfsxfs-20240501/libcerror/libcerror_system.h +0 -78
  935. libfsxfs-20240501/libcerror/libcerror_types.h +0 -51
  936. libfsxfs-20240501/libcerror/libcerror_unused.h +0 -44
  937. libfsxfs-20240501/libcfile/Makefile.in +0 -905
  938. libfsxfs-20240501/libcfile/libcfile_definitions.h +0 -101
  939. libfsxfs-20240501/libcfile/libcfile_error.c +0 -111
  940. libfsxfs-20240501/libcfile/libcfile_error.h +0 -74
  941. libfsxfs-20240501/libcfile/libcfile_extern.h +0 -46
  942. libfsxfs-20240501/libcfile/libcfile_file.c +0 -4570
  943. libfsxfs-20240501/libcfile/libcfile_file.h +0 -273
  944. libfsxfs-20240501/libcfile/libcfile_libcerror.h +0 -50
  945. libfsxfs-20240501/libcfile/libcfile_libclocale.h +0 -50
  946. libfsxfs-20240501/libcfile/libcfile_libcnotify.h +0 -50
  947. libfsxfs-20240501/libcfile/libcfile_libuna.h +0 -60
  948. libfsxfs-20240501/libcfile/libcfile_notify.c +0 -120
  949. libfsxfs-20240501/libcfile/libcfile_notify.h +0 -63
  950. libfsxfs-20240501/libcfile/libcfile_support.c +0 -1171
  951. libfsxfs-20240501/libcfile/libcfile_support.h +0 -98
  952. libfsxfs-20240501/libcfile/libcfile_system_string.c +0 -1017
  953. libfsxfs-20240501/libcfile/libcfile_system_string.h +0 -95
  954. libfsxfs-20240501/libcfile/libcfile_types.h +0 -47
  955. libfsxfs-20240501/libcfile/libcfile_unused.h +0 -44
  956. libfsxfs-20240501/libcfile/libcfile_winapi.c +0 -815
  957. libfsxfs-20240501/libcfile/libcfile_winapi.h +0 -122
  958. libfsxfs-20240501/libclocale/Makefile.in +0 -888
  959. libfsxfs-20240501/libclocale/libclocale_codepage.c +0 -920
  960. libfsxfs-20240501/libclocale/libclocale_codepage.h +0 -77
  961. libfsxfs-20240501/libclocale/libclocale_definitions.h +0 -106
  962. libfsxfs-20240501/libclocale/libclocale_extern.h +0 -46
  963. libfsxfs-20240501/libclocale/libclocale_libcerror.h +0 -50
  964. libfsxfs-20240501/libclocale/libclocale_locale.c +0 -494
  965. libfsxfs-20240501/libclocale/libclocale_locale.h +0 -66
  966. libfsxfs-20240501/libclocale/libclocale_support.c +0 -130
  967. libfsxfs-20240501/libclocale/libclocale_support.h +0 -55
  968. libfsxfs-20240501/libclocale/libclocale_unused.h +0 -44
  969. libfsxfs-20240501/libclocale/libclocale_wide_string.c +0 -69
  970. libfsxfs-20240501/libclocale/libclocale_wide_string.h +0 -54
  971. libfsxfs-20240501/libcnotify/Makefile.in +0 -886
  972. libfsxfs-20240501/libcnotify/libcnotify_definitions.h +0 -54
  973. libfsxfs-20240501/libcnotify/libcnotify_extern.h +0 -46
  974. libfsxfs-20240501/libcnotify/libcnotify_libcerror.h +0 -50
  975. libfsxfs-20240501/libcnotify/libcnotify_print.c +0 -400
  976. libfsxfs-20240501/libcnotify/libcnotify_print.h +0 -68
  977. libfsxfs-20240501/libcnotify/libcnotify_stream.c +0 -182
  978. libfsxfs-20240501/libcnotify/libcnotify_stream.h +0 -56
  979. libfsxfs-20240501/libcnotify/libcnotify_support.c +0 -39
  980. libfsxfs-20240501/libcnotify/libcnotify_support.h +0 -49
  981. libfsxfs-20240501/libcnotify/libcnotify_unused.h +0 -44
  982. libfsxfs-20240501/libcnotify/libcnotify_verbose.c +0 -38
  983. libfsxfs-20240501/libcnotify/libcnotify_verbose.h +0 -50
  984. libfsxfs-20240501/libcpath/Makefile.in +0 -890
  985. libfsxfs-20240501/libcpath/libcpath_definitions.h +0 -83
  986. libfsxfs-20240501/libcpath/libcpath_error.c +0 -111
  987. libfsxfs-20240501/libcpath/libcpath_error.h +0 -74
  988. libfsxfs-20240501/libcpath/libcpath_extern.h +0 -46
  989. libfsxfs-20240501/libcpath/libcpath_libcerror.h +0 -50
  990. libfsxfs-20240501/libcpath/libcpath_libclocale.h +0 -50
  991. libfsxfs-20240501/libcpath/libcpath_libcsplit.h +0 -52
  992. libfsxfs-20240501/libcpath/libcpath_libuna.h +0 -60
  993. libfsxfs-20240501/libcpath/libcpath_path.c +0 -7174
  994. libfsxfs-20240501/libcpath/libcpath_path.h +0 -273
  995. libfsxfs-20240501/libcpath/libcpath_support.c +0 -93
  996. libfsxfs-20240501/libcpath/libcpath_support.h +0 -58
  997. libfsxfs-20240501/libcpath/libcpath_system_string.c +0 -1017
  998. libfsxfs-20240501/libcpath/libcpath_system_string.h +0 -95
  999. libfsxfs-20240501/libcpath/libcpath_unused.h +0 -44
  1000. libfsxfs-20240501/libcsplit/Makefile.in +0 -903
  1001. libfsxfs-20240501/libcsplit/libcsplit_definitions.h +0 -47
  1002. libfsxfs-20240501/libcsplit/libcsplit_error.c +0 -111
  1003. libfsxfs-20240501/libcsplit/libcsplit_error.h +0 -74
  1004. libfsxfs-20240501/libcsplit/libcsplit_extern.h +0 -46
  1005. libfsxfs-20240501/libcsplit/libcsplit_libcerror.h +0 -50
  1006. libfsxfs-20240501/libcsplit/libcsplit_narrow_split_string.c +0 -547
  1007. libfsxfs-20240501/libcsplit/libcsplit_narrow_split_string.h +0 -107
  1008. libfsxfs-20240501/libcsplit/libcsplit_narrow_string.c +0 -288
  1009. libfsxfs-20240501/libcsplit/libcsplit_narrow_string.h +0 -49
  1010. libfsxfs-20240501/libcsplit/libcsplit_support.c +0 -39
  1011. libfsxfs-20240501/libcsplit/libcsplit_support.h +0 -47
  1012. libfsxfs-20240501/libcsplit/libcsplit_types.h +0 -49
  1013. libfsxfs-20240501/libcsplit/libcsplit_unused.h +0 -44
  1014. libfsxfs-20240501/libcsplit/libcsplit_wide_split_string.c +0 -551
  1015. libfsxfs-20240501/libcsplit/libcsplit_wide_split_string.h +0 -111
  1016. libfsxfs-20240501/libcsplit/libcsplit_wide_string.c +0 -292
  1017. libfsxfs-20240501/libcsplit/libcsplit_wide_string.h +0 -53
  1018. libfsxfs-20240501/libcthreads/Makefile.in +0 -938
  1019. libfsxfs-20240501/libcthreads/libcthreads_condition.c +0 -735
  1020. libfsxfs-20240501/libcthreads/libcthreads_condition.h +0 -120
  1021. libfsxfs-20240501/libcthreads/libcthreads_definitions.h +0 -84
  1022. libfsxfs-20240501/libcthreads/libcthreads_error.c +0 -111
  1023. libfsxfs-20240501/libcthreads/libcthreads_error.h +0 -74
  1024. libfsxfs-20240501/libcthreads/libcthreads_extern.h +0 -46
  1025. libfsxfs-20240501/libcthreads/libcthreads_libcerror.h +0 -50
  1026. libfsxfs-20240501/libcthreads/libcthreads_lock.c +0 -391
  1027. libfsxfs-20240501/libcthreads/libcthreads_lock.h +0 -88
  1028. libfsxfs-20240501/libcthreads/libcthreads_mutex.c +0 -601
  1029. libfsxfs-20240501/libcthreads/libcthreads_mutex.h +0 -98
  1030. libfsxfs-20240501/libcthreads/libcthreads_queue.c +0 -1150
  1031. libfsxfs-20240501/libcthreads/libcthreads_queue.h +0 -136
  1032. libfsxfs-20240501/libcthreads/libcthreads_read_write_lock.c +0 -690
  1033. libfsxfs-20240501/libcthreads/libcthreads_read_write_lock.h +0 -119
  1034. libfsxfs-20240501/libcthreads/libcthreads_repeating_thread.c +0 -644
  1035. libfsxfs-20240501/libcthreads/libcthreads_repeating_thread.h +0 -115
  1036. libfsxfs-20240501/libcthreads/libcthreads_support.c +0 -39
  1037. libfsxfs-20240501/libcthreads/libcthreads_support.h +0 -47
  1038. libfsxfs-20240501/libcthreads/libcthreads_thread.c +0 -405
  1039. libfsxfs-20240501/libcthreads/libcthreads_thread.h +0 -95
  1040. libfsxfs-20240501/libcthreads/libcthreads_thread_attributes.c +0 -149
  1041. libfsxfs-20240501/libcthreads/libcthreads_thread_attributes.h +0 -78
  1042. libfsxfs-20240501/libcthreads/libcthreads_thread_pool.c +0 -1721
  1043. libfsxfs-20240501/libcthreads/libcthreads_thread_pool.h +0 -177
  1044. libfsxfs-20240501/libcthreads/libcthreads_types.h +0 -63
  1045. libfsxfs-20240501/libcthreads/libcthreads_unused.h +0 -44
  1046. libfsxfs-20240501/libfcache/Makefile.in +0 -899
  1047. libfsxfs-20240501/libfcache/libfcache_cache.c +0 -1118
  1048. libfsxfs-20240501/libfcache/libfcache_cache.h +0 -149
  1049. libfsxfs-20240501/libfcache/libfcache_cache_value.c +0 -502
  1050. libfsxfs-20240501/libfcache/libfcache_cache_value.h +0 -132
  1051. libfsxfs-20240501/libfcache/libfcache_date_time.c +0 -92
  1052. libfsxfs-20240501/libfcache/libfcache_date_time.h +0 -45
  1053. libfsxfs-20240501/libfcache/libfcache_definitions.h +0 -58
  1054. libfsxfs-20240501/libfcache/libfcache_error.c +0 -111
  1055. libfsxfs-20240501/libfcache/libfcache_error.h +0 -74
  1056. libfsxfs-20240501/libfcache/libfcache_extern.h +0 -46
  1057. libfsxfs-20240501/libfcache/libfcache_libcdata.h +0 -54
  1058. libfsxfs-20240501/libfcache/libfcache_libcerror.h +0 -50
  1059. libfsxfs-20240501/libfcache/libfcache_support.c +0 -41
  1060. libfsxfs-20240501/libfcache/libfcache_support.h +0 -47
  1061. libfsxfs-20240501/libfcache/libfcache_types.h +0 -49
  1062. libfsxfs-20240501/libfcache/libfcache_unused.h +0 -44
  1063. libfsxfs-20240501/libfdata/Makefile.in +0 -952
  1064. libfsxfs-20240501/libfdata/libfdata_area.c +0 -1482
  1065. libfsxfs-20240501/libfdata/libfdata_area.h +0 -278
  1066. libfsxfs-20240501/libfdata/libfdata_cache.c +0 -59
  1067. libfsxfs-20240501/libfdata/libfdata_cache.h +0 -56
  1068. libfsxfs-20240501/libfdata/libfdata_definitions.h +0 -249
  1069. libfsxfs-20240501/libfdata/libfdata_error.c +0 -111
  1070. libfsxfs-20240501/libfdata/libfdata_error.h +0 -74
  1071. libfsxfs-20240501/libfdata/libfdata_extern.h +0 -46
  1072. libfsxfs-20240501/libfdata/libfdata_libcdata.h +0 -54
  1073. libfsxfs-20240501/libfdata/libfdata_libcerror.h +0 -50
  1074. libfsxfs-20240501/libfdata/libfdata_libcnotify.h +0 -50
  1075. libfsxfs-20240501/libfdata/libfdata_libfcache.h +0 -50
  1076. libfsxfs-20240501/libfdata/libfdata_list.c +0 -4426
  1077. libfsxfs-20240501/libfdata/libfdata_list.h +0 -452
  1078. libfsxfs-20240501/libfdata/libfdata_list_element.c +0 -824
  1079. libfsxfs-20240501/libfdata/libfdata_list_element.h +0 -159
  1080. libfsxfs-20240501/libfdata/libfdata_mapped_range.c +0 -312
  1081. libfsxfs-20240501/libfdata/libfdata_mapped_range.h +0 -77
  1082. libfsxfs-20240501/libfdata/libfdata_notify.c +0 -120
  1083. libfsxfs-20240501/libfdata/libfdata_notify.h +0 -63
  1084. libfsxfs-20240501/libfdata/libfdata_range.c +0 -358
  1085. libfsxfs-20240501/libfdata/libfdata_range.h +0 -94
  1086. libfsxfs-20240501/libfdata/libfdata_range_list.c +0 -1196
  1087. libfsxfs-20240501/libfdata/libfdata_range_list.h +0 -214
  1088. libfsxfs-20240501/libfdata/libfdata_segments_array.c +0 -914
  1089. libfsxfs-20240501/libfdata/libfdata_segments_array.h +0 -94
  1090. libfsxfs-20240501/libfdata/libfdata_stream.c +0 -2582
  1091. libfsxfs-20240501/libfdata/libfdata_stream.h +0 -363
  1092. libfsxfs-20240501/libfdata/libfdata_support.c +0 -41
  1093. libfsxfs-20240501/libfdata/libfdata_support.h +0 -47
  1094. libfsxfs-20240501/libfdata/libfdata_types.h +0 -59
  1095. libfsxfs-20240501/libfdata/libfdata_unused.h +0 -44
  1096. libfsxfs-20240501/libfdata/libfdata_vector.c +0 -1932
  1097. libfsxfs-20240501/libfdata/libfdata_vector.h +0 -295
  1098. libfsxfs-20240501/libfdatetime/Makefile.in +0 -930
  1099. libfsxfs-20240501/libfdatetime/libfdatetime_date_time_values.c +0 -1906
  1100. libfsxfs-20240501/libfdatetime/libfdatetime_date_time_values.h +0 -121
  1101. libfsxfs-20240501/libfdatetime/libfdatetime_definitions.h +0 -121
  1102. libfsxfs-20240501/libfdatetime/libfdatetime_error.c +0 -111
  1103. libfsxfs-20240501/libfdatetime/libfdatetime_error.h +0 -74
  1104. libfsxfs-20240501/libfdatetime/libfdatetime_extern.h +0 -46
  1105. libfsxfs-20240501/libfdatetime/libfdatetime_fat_date_time.c +0 -1258
  1106. libfsxfs-20240501/libfdatetime/libfdatetime_fat_date_time.h +0 -172
  1107. libfsxfs-20240501/libfdatetime/libfdatetime_filetime.c +0 -1465
  1108. libfsxfs-20240501/libfdatetime/libfdatetime_filetime.h +0 -177
  1109. libfsxfs-20240501/libfdatetime/libfdatetime_floatingtime.c +0 -1333
  1110. libfsxfs-20240501/libfdatetime/libfdatetime_floatingtime.h +0 -168
  1111. libfsxfs-20240501/libfdatetime/libfdatetime_hfs_time.c +0 -1329
  1112. libfsxfs-20240501/libfdatetime/libfdatetime_hfs_time.h +0 -166
  1113. libfsxfs-20240501/libfdatetime/libfdatetime_libcerror.h +0 -50
  1114. libfsxfs-20240501/libfdatetime/libfdatetime_nsf_timedate.c +0 -1373
  1115. libfsxfs-20240501/libfdatetime/libfdatetime_nsf_timedate.h +0 -177
  1116. libfsxfs-20240501/libfdatetime/libfdatetime_posix_time.c +0 -1842
  1117. libfsxfs-20240501/libfdatetime/libfdatetime_posix_time.h +0 -189
  1118. libfsxfs-20240501/libfdatetime/libfdatetime_support.c +0 -41
  1119. libfsxfs-20240501/libfdatetime/libfdatetime_support.h +0 -47
  1120. libfsxfs-20240501/libfdatetime/libfdatetime_systemtime.c +0 -1779
  1121. libfsxfs-20240501/libfdatetime/libfdatetime_systemtime.h +0 -180
  1122. libfsxfs-20240501/libfdatetime/libfdatetime_types.h +0 -63
  1123. libfsxfs-20240501/libfdatetime/libfdatetime_unused.h +0 -44
  1124. libfsxfs-20240501/libfguid/Makefile.in +0 -880
  1125. libfsxfs-20240501/libfguid/libfguid_definitions.h +0 -84
  1126. libfsxfs-20240501/libfguid/libfguid_error.c +0 -111
  1127. libfsxfs-20240501/libfguid/libfguid_error.h +0 -74
  1128. libfsxfs-20240501/libfguid/libfguid_extern.h +0 -46
  1129. libfsxfs-20240501/libfguid/libfguid_identifier.c +0 -2524
  1130. libfsxfs-20240501/libfguid/libfguid_identifier.h +0 -204
  1131. libfsxfs-20240501/libfguid/libfguid_libcerror.h +0 -50
  1132. libfsxfs-20240501/libfguid/libfguid_support.c +0 -41
  1133. libfsxfs-20240501/libfguid/libfguid_support.h +0 -47
  1134. libfsxfs-20240501/libfguid/libfguid_types.h +0 -47
  1135. libfsxfs-20240501/libfguid/libfguid_unused.h +0 -44
  1136. libfsxfs-20240501/libfsxfs/Makefile.am +0 -121
  1137. libfsxfs-20240501/libfsxfs/Makefile.in +0 -1188
  1138. libfsxfs-20240501/libfsxfs/fsxfs_attributes.h +0 -77
  1139. libfsxfs-20240501/libfsxfs/fsxfs_attributes_block.h +0 -267
  1140. libfsxfs-20240501/libfsxfs/fsxfs_block_directory.h +0 -97
  1141. libfsxfs-20240501/libfsxfs/fsxfs_btree.h +0 -232
  1142. libfsxfs-20240501/libfsxfs/fsxfs_file_system_block.h +0 -112
  1143. libfsxfs-20240501/libfsxfs/fsxfs_inode.h +0 -528
  1144. libfsxfs-20240501/libfsxfs/fsxfs_inode_information.h +0 -187
  1145. libfsxfs-20240501/libfsxfs/fsxfs_superblock.h +0 -507
  1146. libfsxfs-20240501/libfsxfs/libfsxfs.c +0 -80
  1147. libfsxfs-20240501/libfsxfs/libfsxfs.rc +0 -38
  1148. libfsxfs-20240501/libfsxfs/libfsxfs.rc.in +0 -38
  1149. libfsxfs-20240501/libfsxfs/libfsxfs_attribute_values.c +0 -661
  1150. libfsxfs-20240501/libfsxfs/libfsxfs_attribute_values.h +0 -119
  1151. libfsxfs-20240501/libfsxfs/libfsxfs_attributes.c +0 -1334
  1152. libfsxfs-20240501/libfsxfs/libfsxfs_attributes.h +0 -86
  1153. libfsxfs-20240501/libfsxfs/libfsxfs_attributes_leaf_block_header.c +0 -308
  1154. libfsxfs-20240501/libfsxfs/libfsxfs_attributes_leaf_block_header.h +0 -64
  1155. libfsxfs-20240501/libfsxfs/libfsxfs_attributes_table.c +0 -491
  1156. libfsxfs-20240501/libfsxfs/libfsxfs_attributes_table.h +0 -65
  1157. libfsxfs-20240501/libfsxfs/libfsxfs_attributes_table_header.c +0 -225
  1158. libfsxfs-20240501/libfsxfs/libfsxfs_attributes_table_header.h +0 -66
  1159. libfsxfs-20240501/libfsxfs/libfsxfs_block_data_handle.c +0 -166
  1160. libfsxfs-20240501/libfsxfs/libfsxfs_block_data_handle.h +0 -61
  1161. libfsxfs-20240501/libfsxfs/libfsxfs_block_directory.c +0 -804
  1162. libfsxfs-20240501/libfsxfs/libfsxfs_block_directory.h +0 -90
  1163. libfsxfs-20240501/libfsxfs/libfsxfs_block_directory_footer.c +0 -227
  1164. libfsxfs-20240501/libfsxfs/libfsxfs_block_directory_footer.h +0 -62
  1165. libfsxfs-20240501/libfsxfs/libfsxfs_block_directory_header.c +0 -313
  1166. libfsxfs-20240501/libfsxfs/libfsxfs_block_directory_header.h +0 -66
  1167. libfsxfs-20240501/libfsxfs/libfsxfs_btree_block.c +0 -427
  1168. libfsxfs-20240501/libfsxfs/libfsxfs_btree_block.h +0 -95
  1169. libfsxfs-20240501/libfsxfs/libfsxfs_btree_header.c +0 -458
  1170. libfsxfs-20240501/libfsxfs/libfsxfs_btree_header.h +0 -73
  1171. libfsxfs-20240501/libfsxfs/libfsxfs_buffer_data_handle.c +0 -324
  1172. libfsxfs-20240501/libfsxfs/libfsxfs_buffer_data_handle.h +0 -85
  1173. libfsxfs-20240501/libfsxfs/libfsxfs_data_stream.c +0 -436
  1174. libfsxfs-20240501/libfsxfs/libfsxfs_data_stream.h +0 -63
  1175. libfsxfs-20240501/libfsxfs/libfsxfs_debug.c +0 -701
  1176. libfsxfs-20240501/libfsxfs/libfsxfs_debug.h +0 -86
  1177. libfsxfs-20240501/libfsxfs/libfsxfs_definitions.h +0 -116
  1178. libfsxfs-20240501/libfsxfs/libfsxfs_definitions.h.in +0 -116
  1179. libfsxfs-20240501/libfsxfs/libfsxfs_directory.c +0 -749
  1180. libfsxfs-20240501/libfsxfs/libfsxfs_directory.h +0 -93
  1181. libfsxfs-20240501/libfsxfs/libfsxfs_directory_entry.c +0 -500
  1182. libfsxfs-20240501/libfsxfs/libfsxfs_directory_entry.h +0 -108
  1183. libfsxfs-20240501/libfsxfs/libfsxfs_directory_table.c +0 -484
  1184. libfsxfs-20240501/libfsxfs/libfsxfs_directory_table.h +0 -67
  1185. libfsxfs-20240501/libfsxfs/libfsxfs_directory_table_header.c +0 -276
  1186. libfsxfs-20240501/libfsxfs/libfsxfs_directory_table_header.h +0 -70
  1187. libfsxfs-20240501/libfsxfs/libfsxfs_error.c +0 -111
  1188. libfsxfs-20240501/libfsxfs/libfsxfs_error.h +0 -74
  1189. libfsxfs-20240501/libfsxfs/libfsxfs_extended_attribute.c +0 -1185
  1190. libfsxfs-20240501/libfsxfs/libfsxfs_extended_attribute.h +0 -177
  1191. libfsxfs-20240501/libfsxfs/libfsxfs_extent.c +0 -361
  1192. libfsxfs-20240501/libfsxfs/libfsxfs_extent.h +0 -83
  1193. libfsxfs-20240501/libfsxfs/libfsxfs_extent_btree.c +0 -771
  1194. libfsxfs-20240501/libfsxfs/libfsxfs_extent_btree.h +0 -92
  1195. libfsxfs-20240501/libfsxfs/libfsxfs_extent_list.c +0 -168
  1196. libfsxfs-20240501/libfsxfs/libfsxfs_extent_list.h +0 -49
  1197. libfsxfs-20240501/libfsxfs/libfsxfs_extents.c +0 -315
  1198. libfsxfs-20240501/libfsxfs/libfsxfs_extents.h +0 -54
  1199. libfsxfs-20240501/libfsxfs/libfsxfs_extern.h +0 -46
  1200. libfsxfs-20240501/libfsxfs/libfsxfs_file_entry.c +0 -3864
  1201. libfsxfs-20240501/libfsxfs/libfsxfs_file_entry.h +0 -390
  1202. libfsxfs-20240501/libfsxfs/libfsxfs_file_system.c +0 -1098
  1203. libfsxfs-20240501/libfsxfs/libfsxfs_file_system.h +0 -109
  1204. libfsxfs-20240501/libfsxfs/libfsxfs_file_system_block.c +0 -395
  1205. libfsxfs-20240501/libfsxfs/libfsxfs_file_system_block.h +0 -82
  1206. libfsxfs-20240501/libfsxfs/libfsxfs_file_system_block_header.c +0 -314
  1207. libfsxfs-20240501/libfsxfs/libfsxfs_file_system_block_header.h +0 -72
  1208. libfsxfs-20240501/libfsxfs/libfsxfs_inode.c +0 -1876
  1209. libfsxfs-20240501/libfsxfs/libfsxfs_inode.h +0 -248
  1210. libfsxfs-20240501/libfsxfs/libfsxfs_inode_btree.c +0 -926
  1211. libfsxfs-20240501/libfsxfs/libfsxfs_inode_btree.h +0 -106
  1212. libfsxfs-20240501/libfsxfs/libfsxfs_inode_btree_record.c +0 -231
  1213. libfsxfs-20240501/libfsxfs/libfsxfs_inode_btree_record.h +0 -70
  1214. libfsxfs-20240501/libfsxfs/libfsxfs_inode_information.c +0 -484
  1215. libfsxfs-20240501/libfsxfs/libfsxfs_inode_information.h +0 -80
  1216. libfsxfs-20240501/libfsxfs/libfsxfs_io_handle.c +0 -174
  1217. libfsxfs-20240501/libfsxfs/libfsxfs_io_handle.h +0 -93
  1218. libfsxfs-20240501/libfsxfs/libfsxfs_libbfio.h +0 -58
  1219. libfsxfs-20240501/libfsxfs/libfsxfs_libcdata.h +0 -54
  1220. libfsxfs-20240501/libfsxfs/libfsxfs_libcerror.h +0 -50
  1221. libfsxfs-20240501/libfsxfs/libfsxfs_libclocale.h +0 -50
  1222. libfsxfs-20240501/libfsxfs/libfsxfs_libcnotify.h +0 -50
  1223. libfsxfs-20240501/libfsxfs/libfsxfs_libcthreads.h +0 -64
  1224. libfsxfs-20240501/libfsxfs/libfsxfs_libfcache.h +0 -50
  1225. libfsxfs-20240501/libfsxfs/libfsxfs_libfdata.h +0 -54
  1226. libfsxfs-20240501/libfsxfs/libfsxfs_libfdatetime.h +0 -56
  1227. libfsxfs-20240501/libfsxfs/libfsxfs_libfguid.h +0 -49
  1228. libfsxfs-20240501/libfsxfs/libfsxfs_libuna.h +0 -60
  1229. libfsxfs-20240501/libfsxfs/libfsxfs_notify.c +0 -120
  1230. libfsxfs-20240501/libfsxfs/libfsxfs_notify.h +0 -63
  1231. libfsxfs-20240501/libfsxfs/libfsxfs_superblock.c +0 -1051
  1232. libfsxfs-20240501/libfsxfs/libfsxfs_superblock.h +0 -149
  1233. libfsxfs-20240501/libfsxfs/libfsxfs_support.c +0 -430
  1234. libfsxfs-20240501/libfsxfs/libfsxfs_support.h +0 -82
  1235. libfsxfs-20240501/libfsxfs/libfsxfs_types.h +0 -51
  1236. libfsxfs-20240501/libfsxfs/libfsxfs_unused.h +0 -44
  1237. libfsxfs-20240501/libfsxfs/libfsxfs_volume.c +0 -2328
  1238. libfsxfs-20240501/libfsxfs/libfsxfs_volume.h +0 -218
  1239. libfsxfs-20240501/libfsxfs.pc.in +0 -12
  1240. libfsxfs-20240501/libfsxfs.spec +0 -100
  1241. libfsxfs-20240501/libfsxfs.spec.in +0 -100
  1242. libfsxfs-20240501/libhmac/Makefile.in +0 -943
  1243. libfsxfs-20240501/libhmac/libhmac_byte_stream.h +0 -161
  1244. libfsxfs-20240501/libhmac/libhmac_definitions.h +0 -56
  1245. libfsxfs-20240501/libhmac/libhmac_error.c +0 -111
  1246. libfsxfs-20240501/libhmac/libhmac_error.h +0 -74
  1247. libfsxfs-20240501/libhmac/libhmac_extern.h +0 -46
  1248. libfsxfs-20240501/libhmac/libhmac_libcerror.h +0 -50
  1249. libfsxfs-20240501/libhmac/libhmac_md5.c +0 -715
  1250. libfsxfs-20240501/libhmac/libhmac_md5.h +0 -84
  1251. libfsxfs-20240501/libhmac/libhmac_md5_context.c +0 -1292
  1252. libfsxfs-20240501/libhmac/libhmac_md5_context.h +0 -130
  1253. libfsxfs-20240501/libhmac/libhmac_sha1.c +0 -715
  1254. libfsxfs-20240501/libhmac/libhmac_sha1.h +0 -83
  1255. libfsxfs-20240501/libhmac/libhmac_sha1_context.c +0 -1380
  1256. libfsxfs-20240501/libhmac/libhmac_sha1_context.h +0 -130
  1257. libfsxfs-20240501/libhmac/libhmac_sha224.c +0 -715
  1258. libfsxfs-20240501/libhmac/libhmac_sha224.h +0 -83
  1259. libfsxfs-20240501/libhmac/libhmac_sha224_context.c +0 -1348
  1260. libfsxfs-20240501/libhmac/libhmac_sha224_context.h +0 -130
  1261. libfsxfs-20240501/libhmac/libhmac_sha256.c +0 -715
  1262. libfsxfs-20240501/libhmac/libhmac_sha256.h +0 -83
  1263. libfsxfs-20240501/libhmac/libhmac_sha256_context.c +0 -1351
  1264. libfsxfs-20240501/libhmac/libhmac_sha256_context.h +0 -130
  1265. libfsxfs-20240501/libhmac/libhmac_sha512.c +0 -715
  1266. libfsxfs-20240501/libhmac/libhmac_sha512.h +0 -83
  1267. libfsxfs-20240501/libhmac/libhmac_sha512_context.c +0 -1387
  1268. libfsxfs-20240501/libhmac/libhmac_sha512_context.h +0 -130
  1269. libfsxfs-20240501/libhmac/libhmac_support.c +0 -39
  1270. libfsxfs-20240501/libhmac/libhmac_support.h +0 -47
  1271. libfsxfs-20240501/libhmac/libhmac_types.h +0 -55
  1272. libfsxfs-20240501/libhmac/libhmac_unused.h +0 -44
  1273. libfsxfs-20240501/libuna/Makefile.in +0 -1299
  1274. libfsxfs-20240501/libuna/libuna_base16_stream.c +0 -1511
  1275. libfsxfs-20240501/libuna/libuna_base16_stream.h +0 -93
  1276. libfsxfs-20240501/libuna/libuna_base32_stream.c +0 -3035
  1277. libfsxfs-20240501/libuna/libuna_base32_stream.h +0 -131
  1278. libfsxfs-20240501/libuna/libuna_base64_stream.c +0 -2832
  1279. libfsxfs-20240501/libuna/libuna_base64_stream.h +0 -131
  1280. libfsxfs-20240501/libuna/libuna_byte_stream.c +0 -633
  1281. libfsxfs-20240501/libuna/libuna_byte_stream.h +0 -104
  1282. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_10.c +0 -73
  1283. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_10.h +0 -48
  1284. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_13.c +0 -81
  1285. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_13.h +0 -48
  1286. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_14.c +0 -66
  1287. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_14.h +0 -51
  1288. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_15.c +0 -46
  1289. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_15.h +0 -45
  1290. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_16.c +0 -78
  1291. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_16.h +0 -57
  1292. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_2.c +0 -82
  1293. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_2.h +0 -51
  1294. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_3.c +0 -79
  1295. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_3.h +0 -57
  1296. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_4.c +0 -80
  1297. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_4.h +0 -48
  1298. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_5.c +0 -62
  1299. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_5.h +0 -45
  1300. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_6.c +0 -58
  1301. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_6.h +0 -45
  1302. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_7.c +0 -66
  1303. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_7.h +0 -48
  1304. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_8.c +0 -61
  1305. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_8.h +0 -48
  1306. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_9.c +0 -50
  1307. libfsxfs-20240501/libuna/libuna_codepage_iso_8859_9.h +0 -45
  1308. libfsxfs-20240501/libuna/libuna_codepage_koi8_r.c +0 -392
  1309. libfsxfs-20240501/libuna/libuna_codepage_koi8_r.h +0 -54
  1310. libfsxfs-20240501/libuna/libuna_codepage_koi8_u.c +0 -424
  1311. libfsxfs-20240501/libuna/libuna_codepage_koi8_u.h +0 -54
  1312. libfsxfs-20240501/libuna/libuna_codepage_mac_arabic.c +0 -352
  1313. libfsxfs-20240501/libuna/libuna_codepage_mac_arabic.h +0 -54
  1314. libfsxfs-20240501/libuna/libuna_codepage_mac_celtic.c +0 -395
  1315. libfsxfs-20240501/libuna/libuna_codepage_mac_celtic.h +0 -54
  1316. libfsxfs-20240501/libuna/libuna_codepage_mac_centraleurroman.c +0 -319
  1317. libfsxfs-20240501/libuna/libuna_codepage_mac_centraleurroman.h +0 -54
  1318. libfsxfs-20240501/libuna/libuna_codepage_mac_croatian.c +0 -378
  1319. libfsxfs-20240501/libuna/libuna_codepage_mac_croatian.h +0 -54
  1320. libfsxfs-20240501/libuna/libuna_codepage_mac_cyrillic.c +0 -325
  1321. libfsxfs-20240501/libuna/libuna_codepage_mac_cyrillic.h +0 -54
  1322. libfsxfs-20240501/libuna/libuna_codepage_mac_dingbats.c +0 -347
  1323. libfsxfs-20240501/libuna/libuna_codepage_mac_dingbats.h +0 -54
  1324. libfsxfs-20240501/libuna/libuna_codepage_mac_farsi.c +0 -372
  1325. libfsxfs-20240501/libuna/libuna_codepage_mac_farsi.h +0 -54
  1326. libfsxfs-20240501/libuna/libuna_codepage_mac_gaelic.c +0 -437
  1327. libfsxfs-20240501/libuna/libuna_codepage_mac_gaelic.h +0 -54
  1328. libfsxfs-20240501/libuna/libuna_codepage_mac_greek.c +0 -305
  1329. libfsxfs-20240501/libuna/libuna_codepage_mac_greek.h +0 -54
  1330. libfsxfs-20240501/libuna/libuna_codepage_mac_icelandic.c +0 -381
  1331. libfsxfs-20240501/libuna/libuna_codepage_mac_icelandic.h +0 -54
  1332. libfsxfs-20240501/libuna/libuna_codepage_mac_inuit.c +0 -380
  1333. libfsxfs-20240501/libuna/libuna_codepage_mac_inuit.h +0 -54
  1334. libfsxfs-20240501/libuna/libuna_codepage_mac_roman.c +0 -387
  1335. libfsxfs-20240501/libuna/libuna_codepage_mac_roman.h +0 -54
  1336. libfsxfs-20240501/libuna/libuna_codepage_mac_romanian.c +0 -396
  1337. libfsxfs-20240501/libuna/libuna_codepage_mac_romanian.h +0 -54
  1338. libfsxfs-20240501/libuna/libuna_codepage_mac_russian.c +0 -317
  1339. libfsxfs-20240501/libuna/libuna_codepage_mac_russian.h +0 -54
  1340. libfsxfs-20240501/libuna/libuna_codepage_mac_symbol.c +0 -537
  1341. libfsxfs-20240501/libuna/libuna_codepage_mac_symbol.h +0 -59
  1342. libfsxfs-20240501/libuna/libuna_codepage_mac_thai.c +0 -330
  1343. libfsxfs-20240501/libuna/libuna_codepage_mac_thai.h +0 -59
  1344. libfsxfs-20240501/libuna/libuna_codepage_mac_turkish.c +0 -397
  1345. libfsxfs-20240501/libuna/libuna_codepage_mac_turkish.h +0 -54
  1346. libfsxfs-20240501/libuna/libuna_codepage_mac_ukrainian.c +0 -321
  1347. libfsxfs-20240501/libuna/libuna_codepage_mac_ukrainian.h +0 -54
  1348. libfsxfs-20240501/libuna/libuna_codepage_windows_1250.c +0 -313
  1349. libfsxfs-20240501/libuna/libuna_codepage_windows_1250.h +0 -54
  1350. libfsxfs-20240501/libuna/libuna_codepage_windows_1251.c +0 -301
  1351. libfsxfs-20240501/libuna/libuna_codepage_windows_1251.h +0 -54
  1352. libfsxfs-20240501/libuna/libuna_codepage_windows_1252.c +0 -287
  1353. libfsxfs-20240501/libuna/libuna_codepage_windows_1252.h +0 -54
  1354. libfsxfs-20240501/libuna/libuna_codepage_windows_1253.c +0 -291
  1355. libfsxfs-20240501/libuna/libuna_codepage_windows_1253.h +0 -54
  1356. libfsxfs-20240501/libuna/libuna_codepage_windows_1254.c +0 -348
  1357. libfsxfs-20240501/libuna/libuna_codepage_windows_1254.h +0 -54
  1358. libfsxfs-20240501/libuna/libuna_codepage_windows_1255.c +0 -328
  1359. libfsxfs-20240501/libuna/libuna_codepage_windows_1255.h +0 -54
  1360. libfsxfs-20240501/libuna/libuna_codepage_windows_1256.c +0 -372
  1361. libfsxfs-20240501/libuna/libuna_codepage_windows_1256.h +0 -54
  1362. libfsxfs-20240501/libuna/libuna_codepage_windows_1257.c +0 -303
  1363. libfsxfs-20240501/libuna/libuna_codepage_windows_1257.h +0 -54
  1364. libfsxfs-20240501/libuna/libuna_codepage_windows_1258.c +0 -349
  1365. libfsxfs-20240501/libuna/libuna_codepage_windows_1258.h +0 -54
  1366. libfsxfs-20240501/libuna/libuna_codepage_windows_874.c +0 -274
  1367. libfsxfs-20240501/libuna/libuna_codepage_windows_874.h +0 -54
  1368. libfsxfs-20240501/libuna/libuna_codepage_windows_932.c +0 -4913
  1369. libfsxfs-20240501/libuna/libuna_codepage_windows_932.h +0 -59
  1370. libfsxfs-20240501/libuna/libuna_codepage_windows_936.c +0 -7371
  1371. libfsxfs-20240501/libuna/libuna_codepage_windows_936.h +0 -59
  1372. libfsxfs-20240501/libuna/libuna_codepage_windows_949.c +0 -8168
  1373. libfsxfs-20240501/libuna/libuna_codepage_windows_949.h +0 -59
  1374. libfsxfs-20240501/libuna/libuna_codepage_windows_950.c +0 -6390
  1375. libfsxfs-20240501/libuna/libuna_codepage_windows_950.h +0 -59
  1376. libfsxfs-20240501/libuna/libuna_definitions.h +0 -436
  1377. libfsxfs-20240501/libuna/libuna_error.c +0 -111
  1378. libfsxfs-20240501/libuna/libuna_error.h +0 -74
  1379. libfsxfs-20240501/libuna/libuna_extern.h +0 -46
  1380. libfsxfs-20240501/libuna/libuna_libcerror.h +0 -50
  1381. libfsxfs-20240501/libuna/libuna_scsu.c +0 -64
  1382. libfsxfs-20240501/libuna/libuna_scsu.h +0 -45
  1383. libfsxfs-20240501/libuna/libuna_support.c +0 -39
  1384. libfsxfs-20240501/libuna/libuna_support.h +0 -49
  1385. libfsxfs-20240501/libuna/libuna_types.h +0 -53
  1386. libfsxfs-20240501/libuna/libuna_unicode_character.c +0 -5784
  1387. libfsxfs-20240501/libuna/libuna_unicode_character.h +0 -260
  1388. libfsxfs-20240501/libuna/libuna_unused.h +0 -44
  1389. libfsxfs-20240501/libuna/libuna_url_stream.c +0 -584
  1390. libfsxfs-20240501/libuna/libuna_url_stream.h +0 -71
  1391. libfsxfs-20240501/libuna/libuna_utf16_stream.c +0 -815
  1392. libfsxfs-20240501/libuna/libuna_utf16_stream.h +0 -109
  1393. libfsxfs-20240501/libuna/libuna_utf16_string.c +0 -3950
  1394. libfsxfs-20240501/libuna/libuna_utf16_string.h +0 -325
  1395. libfsxfs-20240501/libuna/libuna_utf32_stream.c +0 -819
  1396. libfsxfs-20240501/libuna/libuna_utf32_stream.h +0 -109
  1397. libfsxfs-20240501/libuna/libuna_utf32_string.c +0 -3808
  1398. libfsxfs-20240501/libuna/libuna_utf32_string.h +0 -321
  1399. libfsxfs-20240501/libuna/libuna_utf7_stream.c +0 -628
  1400. libfsxfs-20240501/libuna/libuna_utf7_stream.h +0 -98
  1401. libfsxfs-20240501/libuna/libuna_utf8_stream.c +0 -748
  1402. libfsxfs-20240501/libuna/libuna_utf8_stream.h +0 -105
  1403. libfsxfs-20240501/libuna/libuna_utf8_string.c +0 -4092
  1404. libfsxfs-20240501/libuna/libuna_utf8_string.h +0 -329
  1405. libfsxfs-20240501/ltmain.sh +0 -11429
  1406. libfsxfs-20240501/m4/common.m4 +0 -578
  1407. libfsxfs-20240501/m4/libbfio.m4 +0 -422
  1408. libfsxfs-20240501/m4/libcdata.m4 +0 -599
  1409. libfsxfs-20240501/m4/libcerror.m4 +0 -237
  1410. libfsxfs-20240501/m4/libcfile.m4 +0 -429
  1411. libfsxfs-20240501/m4/libclocale.m4 +0 -291
  1412. libfsxfs-20240501/m4/libcnotify.m4 +0 -209
  1413. libfsxfs-20240501/m4/libcpath.m4 +0 -344
  1414. libfsxfs-20240501/m4/libcrypto.m4 +0 -1000
  1415. libfsxfs-20240501/m4/libcsplit.m4 +0 -249
  1416. libfsxfs-20240501/m4/libcthreads.m4 +0 -385
  1417. libfsxfs-20240501/m4/libfcache.m4 +0 -266
  1418. libfsxfs-20240501/m4/libfdata.m4 +0 -555
  1419. libfsxfs-20240501/m4/libfdatetime.m4 +0 -560
  1420. libfsxfs-20240501/m4/libfguid.m4 +0 -210
  1421. libfsxfs-20240501/m4/libhmac.m4 +0 -315
  1422. libfsxfs-20240501/m4/libtool.m4 +0 -8403
  1423. libfsxfs-20240501/m4/libuna.m4 +0 -1044
  1424. libfsxfs-20240501/m4/pthread.m4 +0 -196
  1425. libfsxfs-20240501/m4/python.m4 +0 -208
  1426. libfsxfs-20240501/m4/tests.m4 +0 -33
  1427. libfsxfs-20240501/m4/types.m4 +0 -133
  1428. libfsxfs-20240501/manuals/Makefile.am +0 -14
  1429. libfsxfs-20240501/manuals/Makefile.in +0 -825
  1430. libfsxfs-20240501/manuals/fsxfsinfo.1 +0 -77
  1431. libfsxfs-20240501/manuals/fsxfsmount.1 +0 -61
  1432. libfsxfs-20240501/manuals/libfsxfs.3 +0 -225
  1433. libfsxfs-20240501/msvscpp/Makefile.am +0 -54
  1434. libfsxfs-20240501/msvscpp/Makefile.in +0 -741
  1435. libfsxfs-20240501/msvscpp/fsxfsmount/fsxfsmount.vcproj +0 -300
  1436. libfsxfs-20240501/msvscpp/libfsxfs/libfsxfs.vcproj +0 -584
  1437. libfsxfs-20240501/msvscpp/libfsxfs.sln +0 -547
  1438. libfsxfs-20240501/msvscpp/libhmac/libhmac.vcproj +0 -249
  1439. libfsxfs-20240501/msvscpp/pyfsxfs/pyfsxfs.vcproj +0 -288
  1440. libfsxfs-20240501/ossfuzz/Makefile.in +0 -1016
  1441. libfsxfs-20240501/ossfuzz/extended_attribute_fuzzer.cc +0 -138
  1442. libfsxfs-20240501/ossfuzz/file_entry_fuzzer.cc +0 -239
  1443. libfsxfs-20240501/ossfuzz/ossfuzz_libbfio.h +0 -58
  1444. libfsxfs-20240501/ossfuzz/ossfuzz_libfsxfs.h +0 -30
  1445. libfsxfs-20240501/ossfuzz/volume_fuzzer.cc +0 -119
  1446. libfsxfs-20240501/po/Makevars +0 -45
  1447. libfsxfs-20240501/pyfsxfs/Makefile.am +0 -53
  1448. libfsxfs-20240501/pyfsxfs/Makefile.in +0 -1072
  1449. libfsxfs-20240501/pyfsxfs/pyfsxfs.c +0 -714
  1450. libfsxfs-20240501/pyfsxfs/pyfsxfs.h +0 -71
  1451. libfsxfs-20240501/pyfsxfs/pyfsxfs_datetime.c +0 -691
  1452. libfsxfs-20240501/pyfsxfs/pyfsxfs_datetime.h +0 -65
  1453. libfsxfs-20240501/pyfsxfs/pyfsxfs_error.c +0 -422
  1454. libfsxfs-20240501/pyfsxfs/pyfsxfs_error.h +0 -60
  1455. libfsxfs-20240501/pyfsxfs/pyfsxfs_extended_attribute.c +0 -1299
  1456. libfsxfs-20240501/pyfsxfs/pyfsxfs_extended_attribute.h +0 -110
  1457. libfsxfs-20240501/pyfsxfs/pyfsxfs_extended_attributes.c +0 -452
  1458. libfsxfs-20240501/pyfsxfs/pyfsxfs_extended_attributes.h +0 -95
  1459. libfsxfs-20240501/pyfsxfs/pyfsxfs_file_entries.c +0 -452
  1460. libfsxfs-20240501/pyfsxfs/pyfsxfs_file_entries.h +0 -95
  1461. libfsxfs-20240501/pyfsxfs/pyfsxfs_file_entry.c +0 -3162
  1462. libfsxfs-20240501/pyfsxfs/pyfsxfs_file_entry.h +0 -219
  1463. libfsxfs-20240501/pyfsxfs/pyfsxfs_file_object_io_handle.c +0 -1524
  1464. libfsxfs-20240501/pyfsxfs/pyfsxfs_file_object_io_handle.h +0 -141
  1465. libfsxfs-20240501/pyfsxfs/pyfsxfs_integer.c +0 -399
  1466. libfsxfs-20240501/pyfsxfs/pyfsxfs_integer.h +0 -56
  1467. libfsxfs-20240501/pyfsxfs/pyfsxfs_libbfio.h +0 -54
  1468. libfsxfs-20240501/pyfsxfs/pyfsxfs_libcerror.h +0 -50
  1469. libfsxfs-20240501/pyfsxfs/pyfsxfs_libfsxfs.h +0 -30
  1470. libfsxfs-20240501/pyfsxfs/pyfsxfs_python.h +0 -83
  1471. libfsxfs-20240501/pyfsxfs/pyfsxfs_unused.h +0 -44
  1472. libfsxfs-20240501/pyfsxfs/pyfsxfs_volume.c +0 -1202
  1473. libfsxfs-20240501/pyfsxfs/pyfsxfs_volume.h +0 -103
  1474. libfsxfs-20240501/pyproject.toml +0 -4
  1475. libfsxfs-20240501/setup.cfg +0 -16
  1476. libfsxfs-20240501/setup.cfg.in +0 -16
  1477. libfsxfs-20240501/setup.py +0 -293
  1478. libfsxfs-20240501/test-driver +0 -153
  1479. libfsxfs-20240501/tests/Makefile.am +0 -450
  1480. libfsxfs-20240501/tests/Makefile.in +0 -2093
  1481. libfsxfs-20240501/tests/fsxfs_test_attribute_values.c +0 -951
  1482. libfsxfs-20240501/tests/fsxfs_test_attributes_leaf_block_header.c +0 -543
  1483. libfsxfs-20240501/tests/fsxfs_test_attributes_table.c +0 -561
  1484. libfsxfs-20240501/tests/fsxfs_test_attributes_table_header.c +0 -474
  1485. libfsxfs-20240501/tests/fsxfs_test_block_directory_footer.c +0 -474
  1486. libfsxfs-20240501/tests/fsxfs_test_block_directory_header.c +0 -474
  1487. libfsxfs-20240501/tests/fsxfs_test_btree_block.c +0 -901
  1488. libfsxfs-20240501/tests/fsxfs_test_btree_header.c +0 -570
  1489. libfsxfs-20240501/tests/fsxfs_test_buffer_data_handle.c +0 -114
  1490. libfsxfs-20240501/tests/fsxfs_test_directory_entry.c +0 -311
  1491. libfsxfs-20240501/tests/fsxfs_test_directory_table_header.c +0 -474
  1492. libfsxfs-20240501/tests/fsxfs_test_error.c +0 -150
  1493. libfsxfs-20240501/tests/fsxfs_test_extent.c +0 -311
  1494. libfsxfs-20240501/tests/fsxfs_test_file_system_block_header.c +0 -545
  1495. libfsxfs-20240501/tests/fsxfs_test_functions.c +0 -672
  1496. libfsxfs-20240501/tests/fsxfs_test_functions.h +0 -72
  1497. libfsxfs-20240501/tests/fsxfs_test_getopt.c +0 -190
  1498. libfsxfs-20240501/tests/fsxfs_test_getopt.h +0 -68
  1499. libfsxfs-20240501/tests/fsxfs_test_inode_btree.c +0 -311
  1500. libfsxfs-20240501/tests/fsxfs_test_inode_btree_record.c +0 -474
  1501. libfsxfs-20240501/tests/fsxfs_test_inode_information.c +0 -883
  1502. libfsxfs-20240501/tests/fsxfs_test_io_handle.c +0 -443
  1503. libfsxfs-20240501/tests/fsxfs_test_libbfio.h +0 -58
  1504. libfsxfs-20240501/tests/fsxfs_test_libcdata.h +0 -54
  1505. libfsxfs-20240501/tests/fsxfs_test_libcerror.h +0 -50
  1506. libfsxfs-20240501/tests/fsxfs_test_libclocale.h +0 -50
  1507. libfsxfs-20240501/tests/fsxfs_test_libcnotify.h +0 -50
  1508. libfsxfs-20240501/tests/fsxfs_test_libfsxfs.h +0 -30
  1509. libfsxfs-20240501/tests/fsxfs_test_libuna.h +0 -60
  1510. libfsxfs-20240501/tests/fsxfs_test_macros.h +0 -257
  1511. libfsxfs-20240501/tests/fsxfs_test_memory.c +0 -177
  1512. libfsxfs-20240501/tests/fsxfs_test_memory.h +0 -52
  1513. libfsxfs-20240501/tests/fsxfs_test_notify.c +0 -229
  1514. libfsxfs-20240501/tests/fsxfs_test_superblock.c +0 -750
  1515. libfsxfs-20240501/tests/fsxfs_test_support.c +0 -833
  1516. libfsxfs-20240501/tests/fsxfs_test_tools_info_handle.c +0 -304
  1517. libfsxfs-20240501/tests/fsxfs_test_tools_output.c +0 -105
  1518. libfsxfs-20240501/tests/fsxfs_test_tools_signal.c +0 -213
  1519. libfsxfs-20240501/tests/fsxfs_test_unused.h +0 -50
  1520. libfsxfs-20240501/tests/fsxfs_test_volume.c +0 -1529
  1521. libfsxfs-20240501/tests/pyfsxfs_test_support.py +0 -111
  1522. libfsxfs-20240501/tests/pyfsxfs_test_volume.py +0 -300
  1523. libfsxfs-20240501/tests/test_fsxfsinfo.sh +0 -146
  1524. libfsxfs-20240501/tests/test_library.sh +0 -193
  1525. libfsxfs-20240501/tests/test_manpage.sh +0 -98
  1526. libfsxfs-20240501/tests/test_python_module.sh +0 -195
  1527. libfsxfs-20240501/tests/test_runner.sh +0 -1148
  1528. libfsxfs-20240501/tests/test_tools.sh +0 -193
  1529. {libfsxfs-20240501 → libfsxfs_python-20260702}/ABOUT-NLS +0 -0
  1530. {libfsxfs-20240501 → libfsxfs_python-20260702}/COPYING +0 -0
  1531. {libfsxfs-20240501 → libfsxfs_python-20260702}/COPYING.LESSER +0 -0
  1532. {libfsxfs-20240501 → libfsxfs_python-20260702}/ChangeLog +0 -0
  1533. {libfsxfs-20240501 → libfsxfs_python-20260702}/NEWS +0 -0
  1534. {libfsxfs-20240501 → libfsxfs_python-20260702}/common/Makefile.am +0 -0
  1535. {libfsxfs-20240501 → libfsxfs_python-20260702}/compile +0 -0
  1536. {libfsxfs-20240501 → libfsxfs_python-20260702}/config.rpath +0 -0
  1537. {libfsxfs-20240501 → libfsxfs_python-20260702}/depcomp +0 -0
  1538. {libfsxfs-20240501 → libfsxfs_python-20260702}/dpkg/changelog.in +0 -0
  1539. {libfsxfs-20240501 → libfsxfs_python-20260702}/dpkg/libfsxfs-dev.install +0 -0
  1540. {libfsxfs-20240501 → libfsxfs_python-20260702}/dpkg/libfsxfs-python3.install +0 -0
  1541. {libfsxfs-20240501 → libfsxfs_python-20260702}/dpkg/libfsxfs-tools.install +0 -0
  1542. {libfsxfs-20240501 → libfsxfs_python-20260702}/dpkg/libfsxfs.install +0 -0
  1543. {libfsxfs-20240501 → libfsxfs_python-20260702}/dpkg/source/format +0 -0
  1544. {libfsxfs-20240501 → libfsxfs_python-20260702}/include/Makefile.am +0 -0
  1545. {libfsxfs-20240501 → libfsxfs_python-20260702}/install-sh +0 -0
  1546. {libfsxfs-20240501 → libfsxfs_python-20260702}/libbfio/Makefile.am +0 -0
  1547. {libfsxfs-20240501 → libfsxfs_python-20260702}/libcdata/Makefile.am +0 -0
  1548. {libfsxfs-20240501 → libfsxfs_python-20260702}/libcerror/Makefile.am +0 -0
  1549. {libfsxfs-20240501 → libfsxfs_python-20260702}/libcfile/Makefile.am +0 -0
  1550. {libfsxfs-20240501 → libfsxfs_python-20260702}/libclocale/Makefile.am +0 -0
  1551. {libfsxfs-20240501 → libfsxfs_python-20260702}/libcnotify/Makefile.am +0 -0
  1552. {libfsxfs-20240501 → libfsxfs_python-20260702}/libcpath/Makefile.am +0 -0
  1553. {libfsxfs-20240501 → libfsxfs_python-20260702}/libcsplit/Makefile.am +0 -0
  1554. {libfsxfs-20240501 → libfsxfs_python-20260702}/libcthreads/Makefile.am +0 -0
  1555. {libfsxfs-20240501 → libfsxfs_python-20260702}/libfcache/Makefile.am +0 -0
  1556. {libfsxfs-20240501 → libfsxfs_python-20260702}/libfdata/Makefile.am +0 -0
  1557. {libfsxfs-20240501 → libfsxfs_python-20260702}/libfdatetime/Makefile.am +0 -0
  1558. {libfsxfs-20240501 → libfsxfs_python-20260702}/libfguid/Makefile.am +0 -0
  1559. {libfsxfs-20240501 → libfsxfs_python-20260702}/libhmac/Makefile.am +0 -0
  1560. {libfsxfs-20240501 → libfsxfs_python-20260702}/libuna/Makefile.am +0 -0
  1561. {libfsxfs-20240501 → libfsxfs_python-20260702}/m4/gettext.m4 +0 -0
  1562. {libfsxfs-20240501 → libfsxfs_python-20260702}/m4/host-cpu-c-abi.m4 +0 -0
  1563. {libfsxfs-20240501 → libfsxfs_python-20260702}/m4/iconv.m4 +0 -0
  1564. {libfsxfs-20240501 → libfsxfs_python-20260702}/m4/intlmacosx.m4 +0 -0
  1565. {libfsxfs-20240501 → libfsxfs_python-20260702}/m4/lib-ld.m4 +0 -0
  1566. {libfsxfs-20240501 → libfsxfs_python-20260702}/m4/lib-link.m4 +0 -0
  1567. {libfsxfs-20240501 → libfsxfs_python-20260702}/m4/lib-prefix.m4 +0 -0
  1568. {libfsxfs-20240501 → libfsxfs_python-20260702}/m4/libfuse.m4 +0 -0
  1569. {libfsxfs-20240501 → libfsxfs_python-20260702}/m4/nls.m4 +0 -0
  1570. {libfsxfs-20240501 → libfsxfs_python-20260702}/m4/po.m4 +0 -0
  1571. {libfsxfs-20240501 → libfsxfs_python-20260702}/m4/progtest.m4 +0 -0
  1572. {libfsxfs-20240501 → libfsxfs_python-20260702}/missing +0 -0
  1573. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_attribute_values/fsxfs_test_attribute_values.vcproj +0 -0
  1574. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_attributes_leaf_block_header/fsxfs_test_attributes_leaf_block_header.vcproj +0 -0
  1575. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_attributes_table/fsxfs_test_attributes_table.vcproj +0 -0
  1576. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_attributes_table_header/fsxfs_test_attributes_table_header.vcproj +0 -0
  1577. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_block_directory_footer/fsxfs_test_block_directory_footer.vcproj +0 -0
  1578. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_block_directory_header/fsxfs_test_block_directory_header.vcproj +0 -0
  1579. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_btree_block/fsxfs_test_btree_block.vcproj +0 -0
  1580. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_btree_header/fsxfs_test_btree_header.vcproj +0 -0
  1581. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_buffer_data_handle/fsxfs_test_buffer_data_handle.vcproj +0 -0
  1582. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_directory_entry/fsxfs_test_directory_entry.vcproj +0 -0
  1583. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_directory_table_header/fsxfs_test_directory_table_header.vcproj +0 -0
  1584. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_error/fsxfs_test_error.vcproj +0 -0
  1585. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_extent/fsxfs_test_extent.vcproj +0 -0
  1586. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_file_system_block_header/fsxfs_test_file_system_block_header.vcproj +0 -0
  1587. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_inode_btree/fsxfs_test_inode_btree.vcproj +0 -0
  1588. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_inode_btree_record/fsxfs_test_inode_btree_record.vcproj +0 -0
  1589. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_inode_information/fsxfs_test_inode_information.vcproj +0 -0
  1590. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_io_handle/fsxfs_test_io_handle.vcproj +0 -0
  1591. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_notify/fsxfs_test_notify.vcproj +0 -0
  1592. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_superblock/fsxfs_test_superblock.vcproj +0 -0
  1593. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_support/fsxfs_test_support.vcproj +0 -0
  1594. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_tools_info_handle/fsxfs_test_tools_info_handle.vcproj +0 -0
  1595. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_tools_output/fsxfs_test_tools_output.vcproj +0 -0
  1596. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_tools_signal/fsxfs_test_tools_signal.vcproj +0 -0
  1597. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfs_test_volume/fsxfs_test_volume.vcproj +0 -0
  1598. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/fsxfsinfo/fsxfsinfo.vcproj +0 -0
  1599. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/libbfio/libbfio.vcproj +0 -0
  1600. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/libcdata/libcdata.vcproj +0 -0
  1601. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/libcerror/libcerror.vcproj +0 -0
  1602. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/libcfile/libcfile.vcproj +0 -0
  1603. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/libclocale/libclocale.vcproj +0 -0
  1604. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/libcnotify/libcnotify.vcproj +0 -0
  1605. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/libcpath/libcpath.vcproj +0 -0
  1606. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/libcsplit/libcsplit.vcproj +0 -0
  1607. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/libcthreads/libcthreads.vcproj +0 -0
  1608. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/libfcache/libfcache.vcproj +0 -0
  1609. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/libfdata/libfdata.vcproj +0 -0
  1610. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/libfdatetime/libfdatetime.vcproj +0 -0
  1611. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/libfguid/libfguid.vcproj +0 -0
  1612. {libfsxfs-20240501 → libfsxfs_python-20260702}/msvscpp/libuna/libuna.vcproj +0 -0
  1613. {libfsxfs-20240501 → libfsxfs_python-20260702}/ossfuzz/Makefile.am +0 -0
  1614. {libfsxfs-20240501 → libfsxfs_python-20260702}/po/ChangeLog +0 -0
  1615. {libfsxfs-20240501 → libfsxfs_python-20260702}/po/Makefile.in.in +0 -0
  1616. {libfsxfs-20240501 → libfsxfs_python-20260702}/po/Makevars.in +0 -0
  1617. {libfsxfs-20240501 → libfsxfs_python-20260702}/po/POTFILES.in +0 -0
  1618. {libfsxfs-20240501 → libfsxfs_python-20260702}/po/Rules-quot +0 -0
  1619. {libfsxfs-20240501 → libfsxfs_python-20260702}/po/boldquot.sed +0 -0
  1620. {libfsxfs-20240501 → libfsxfs_python-20260702}/po/en@boldquot.header +0 -0
  1621. {libfsxfs-20240501 → libfsxfs_python-20260702}/po/en@quot.header +0 -0
  1622. {libfsxfs-20240501 → libfsxfs_python-20260702}/po/insert-header.sin +0 -0
  1623. {libfsxfs-20240501 → libfsxfs_python-20260702}/po/quot.sed +0 -0
  1624. {libfsxfs-20240501 → libfsxfs_python-20260702}/po/remove-potcdate.sin +0 -0
@@ -0,0 +1,4 @@
1
+ Acknowledgements: libfsxfs
2
+
3
+ Copyright (C) 2020-2026, Joachim Metz <joachim.metz@gmail.com>
4
+
File without changes
@@ -0,0 +1,107 @@
1
+ ACLOCAL_AMFLAGS = -I m4
2
+
3
+ SUBDIRS = \
4
+ include \
5
+ common \
6
+ libcerror \
7
+ libcthreads \
8
+ libcdata \
9
+ libclocale \
10
+ libcnotify \
11
+ libcsplit \
12
+ libuna \
13
+ libcfile \
14
+ libcpath \
15
+ libbfio \
16
+ libfcache \
17
+ libfdata \
18
+ libfdatetime \
19
+ libfguid \
20
+ libfsxfs \
21
+ libhmac \
22
+ fsxfstools \
23
+ pyfsxfs \
24
+ po \
25
+ manuals \
26
+ tests \
27
+ ossfuzz \
28
+ msvscpp
29
+
30
+ DPKG_FILES = \
31
+ dpkg/changelog \
32
+ dpkg/changelog.in \
33
+ dpkg/compat \
34
+ dpkg/control \
35
+ dpkg/copyright \
36
+ dpkg/rules \
37
+ dpkg/libfsxfs.install \
38
+ dpkg/libfsxfs-dev.install \
39
+ dpkg/libfsxfs-python3.install \
40
+ dpkg/libfsxfs-tools.install \
41
+ dpkg/source/format
42
+
43
+ GETTEXT_FILES = \
44
+ config.rpath \
45
+ po/Makevars.in
46
+
47
+ PKGCONFIG_FILES = \
48
+ libfsxfs.pc.in
49
+
50
+ SETUP_PY_FILES = \
51
+ _build.py \
52
+ pyproject.toml \
53
+ pyproject.toml.in
54
+
55
+ SPEC_FILES = \
56
+ libfsxfs.spec \
57
+ libfsxfs.spec.in
58
+
59
+ EXTRA_DIST = \
60
+ $(DPKG_FILES) \
61
+ $(GETTEXT_FILES) \
62
+ $(PKGCONFIG_FILES) \
63
+ $(SETUP_PY_FILES) \
64
+ $(SPEC_FILES)
65
+
66
+ DISTCLEANFILES = \
67
+ config.status \
68
+ config.cache \
69
+ config.log \
70
+ libfsxfs.pc \
71
+ libfsxfs.spec \
72
+ Makefile \
73
+ Makefile.in \
74
+ po/Makevars
75
+
76
+ pkgconfigdir = $(libdir)/pkgconfig
77
+
78
+ pkgconfig_DATA = \
79
+ libfsxfs.pc
80
+
81
+ check-build: all
82
+ cd $(srcdir)/tests && $(MAKE) check-build $(AM_MAKEFLAGS)
83
+
84
+ libtool: @LIBTOOL_DEPS@
85
+ cd $(srcdir) && $(SHELL) ./config.status --recheck
86
+
87
+ lib: library
88
+
89
+ library:
90
+ (cd $(srcdir)/common && $(MAKE) $(AM_MAKEFLAGS))
91
+ (cd $(srcdir)/libcerror && $(MAKE) $(AM_MAKEFLAGS))
92
+ (cd $(srcdir)/libcthreads && $(MAKE) $(AM_MAKEFLAGS))
93
+ (cd $(srcdir)/libcdata && $(MAKE) $(AM_MAKEFLAGS))
94
+ (cd $(srcdir)/libclocale && $(MAKE) $(AM_MAKEFLAGS))
95
+ (cd $(srcdir)/libcnotify && $(MAKE) $(AM_MAKEFLAGS))
96
+ (cd $(srcdir)/libcsplit && $(MAKE) $(AM_MAKEFLAGS))
97
+ (cd $(srcdir)/libuna && $(MAKE) $(AM_MAKEFLAGS))
98
+ (cd $(srcdir)/libcfile && $(MAKE) $(AM_MAKEFLAGS))
99
+ (cd $(srcdir)/libcpath && $(MAKE) $(AM_MAKEFLAGS))
100
+ (cd $(srcdir)/libbfio && $(MAKE) $(AM_MAKEFLAGS))
101
+ (cd $(srcdir)/libfcache && $(MAKE) $(AM_MAKEFLAGS))
102
+ (cd $(srcdir)/libfdata && $(MAKE) $(AM_MAKEFLAGS))
103
+ (cd $(srcdir)/libfdatetime && $(MAKE) $(AM_MAKEFLAGS))
104
+ (cd $(srcdir)/libfguid && $(MAKE) $(AM_MAKEFLAGS))
105
+ (cd $(srcdir)/libfsxfs && $(MAKE) $(AM_MAKEFLAGS))
106
+ (cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS))
107
+