libfsfat-python 20240501__tar.gz → 20260208__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 (1075) hide show
  1. libfsfat-20260208/AUTHORS +4 -0
  2. libfsfat-20260208/INSTALL +380 -0
  3. libfsfat-20260208/Makefile.in +1247 -0
  4. libfsfat-20260208/PKG-INFO +16 -0
  5. libfsfat-20260208/aclocal.m4 +1725 -0
  6. libfsfat-20260208/common/Makefile.in +806 -0
  7. libfsfat-20260208/common/byte_stream.h +257 -0
  8. libfsfat-20260208/common/common.h +43 -0
  9. libfsfat-20260208/common/config.h +668 -0
  10. libfsfat-20260208/common/config.h.in +667 -0
  11. libfsfat-20260208/common/config_borlandc.h +26 -0
  12. libfsfat-20260208/common/config_msc.h +34 -0
  13. libfsfat-20260208/common/config_winapi.h +95 -0
  14. libfsfat-20260208/common/file_stream.h +151 -0
  15. libfsfat-20260208/common/memory.h +129 -0
  16. libfsfat-20260208/common/narrow_string.h +187 -0
  17. libfsfat-20260208/common/system_string.h +154 -0
  18. libfsfat-20260208/common/types.h +392 -0
  19. libfsfat-20260208/common/types.h.in +392 -0
  20. libfsfat-20260208/common/wide_string.h +175 -0
  21. libfsfat-20260208/compile +364 -0
  22. libfsfat-20260208/config.guess +1815 -0
  23. libfsfat-20260208/config.sub +2354 -0
  24. libfsfat-20260208/configure +73759 -0
  25. libfsfat-20260208/configure.ac +250 -0
  26. libfsfat-20260208/depcomp +792 -0
  27. libfsfat-20260208/dpkg/changelog +5 -0
  28. libfsfat-20260208/dpkg/copyright +25 -0
  29. libfsfat-20260208/fsfattools/Makefile.am +111 -0
  30. libfsfat-20260208/fsfattools/Makefile.in +1051 -0
  31. libfsfat-20260208/fsfattools/digest_hash.c +129 -0
  32. libfsfat-20260208/fsfattools/digest_hash.h +46 -0
  33. libfsfat-20260208/fsfattools/fsfatinfo.c +463 -0
  34. libfsfat-20260208/fsfattools/fsfatmount.c +654 -0
  35. libfsfat-20260208/fsfattools/fsfattools_getopt.c +190 -0
  36. libfsfat-20260208/fsfattools/fsfattools_getopt.h +68 -0
  37. libfsfat-20260208/fsfattools/fsfattools_i18n.h +48 -0
  38. libfsfat-20260208/fsfattools/fsfattools_libbfio.h +58 -0
  39. libfsfat-20260208/fsfattools/fsfattools_libcerror.h +50 -0
  40. libfsfat-20260208/fsfattools/fsfattools_libclocale.h +50 -0
  41. libfsfat-20260208/fsfattools/fsfattools_libcnotify.h +50 -0
  42. libfsfat-20260208/fsfattools/fsfattools_libcpath.h +48 -0
  43. libfsfat-20260208/fsfattools/fsfattools_libfcache.h +50 -0
  44. libfsfat-20260208/fsfattools/fsfattools_libfdata.h +54 -0
  45. libfsfat-20260208/fsfattools/fsfattools_libfdatetime.h +56 -0
  46. libfsfat-20260208/fsfattools/fsfattools_libfguid.h +49 -0
  47. libfsfat-20260208/fsfattools/fsfattools_libfsfat.h +30 -0
  48. libfsfat-20260208/fsfattools/fsfattools_libhmac.h +51 -0
  49. libfsfat-20260208/fsfattools/fsfattools_libuna.h +60 -0
  50. libfsfat-20260208/fsfattools/fsfattools_output.c +206 -0
  51. libfsfat-20260208/fsfattools/fsfattools_output.h +55 -0
  52. libfsfat-20260208/fsfattools/fsfattools_signal.c +262 -0
  53. libfsfat-20260208/fsfattools/fsfattools_signal.h +72 -0
  54. libfsfat-20260208/fsfattools/fsfattools_unused.h +50 -0
  55. libfsfat-20260208/fsfattools/info_handle.c +2536 -0
  56. libfsfat-20260208/fsfattools/info_handle.h +178 -0
  57. libfsfat-20260208/fsfattools/mount_dokan.c +1575 -0
  58. libfsfat-20260208/fsfattools/mount_dokan.h +181 -0
  59. libfsfat-20260208/fsfattools/mount_file_entry.c +921 -0
  60. libfsfat-20260208/fsfattools/mount_file_entry.h +133 -0
  61. libfsfat-20260208/fsfattools/mount_file_system.c +610 -0
  62. libfsfat-20260208/fsfattools/mount_file_system.h +94 -0
  63. libfsfat-20260208/fsfattools/mount_fuse.c +1312 -0
  64. libfsfat-20260208/fsfattools/mount_fuse.h +141 -0
  65. libfsfat-20260208/fsfattools/mount_handle.c +897 -0
  66. libfsfat-20260208/fsfattools/mount_handle.h +138 -0
  67. libfsfat-20260208/fsfattools/mount_path_string.c +801 -0
  68. libfsfat-20260208/fsfattools/mount_path_string.h +59 -0
  69. libfsfat-20260208/include/Makefile.in +867 -0
  70. libfsfat-20260208/include/libfsfat/codepage.h +122 -0
  71. libfsfat-20260208/include/libfsfat/definitions.h +82 -0
  72. libfsfat-20260208/include/libfsfat/definitions.h.in +82 -0
  73. libfsfat-20260208/include/libfsfat/error.h +291 -0
  74. libfsfat-20260208/include/libfsfat/extern.h +44 -0
  75. libfsfat-20260208/include/libfsfat/features.h +50 -0
  76. libfsfat-20260208/include/libfsfat/features.h.in +50 -0
  77. libfsfat-20260208/include/libfsfat/types.h +212 -0
  78. libfsfat-20260208/include/libfsfat/types.h.in +212 -0
  79. libfsfat-20260208/include/libfsfat.h +583 -0
  80. libfsfat-20260208/include/libfsfat.h.in +583 -0
  81. libfsfat-20260208/install-sh +541 -0
  82. libfsfat-20260208/libbfio/Makefile.in +967 -0
  83. libfsfat-20260208/libcdata/Makefile.in +946 -0
  84. libfsfat-20260208/libcerror/Makefile.in +888 -0
  85. libfsfat-20260208/libcfile/Makefile.in +915 -0
  86. libfsfat-20260208/libclocale/Makefile.in +898 -0
  87. libfsfat-20260208/libcnotify/Makefile.in +896 -0
  88. libfsfat-20260208/libcpath/Makefile.in +900 -0
  89. libfsfat-20260208/libcpath/libcpath_definitions.h +83 -0
  90. libfsfat-20260208/libcpath/libcpath_error.c +111 -0
  91. libfsfat-20260208/libcpath/libcpath_error.h +74 -0
  92. libfsfat-20260208/libcpath/libcpath_extern.h +46 -0
  93. libfsfat-20260208/libcpath/libcpath_libcerror.h +50 -0
  94. libfsfat-20260208/libcpath/libcpath_libclocale.h +50 -0
  95. libfsfat-20260208/libcpath/libcpath_libcsplit.h +52 -0
  96. libfsfat-20260208/libcpath/libcpath_libuna.h +60 -0
  97. libfsfat-20260208/libcpath/libcpath_path.c +7210 -0
  98. libfsfat-20260208/libcpath/libcpath_path.h +273 -0
  99. libfsfat-20260208/libcpath/libcpath_support.c +93 -0
  100. libfsfat-20260208/libcpath/libcpath_support.h +58 -0
  101. libfsfat-20260208/libcpath/libcpath_system_string.c +1017 -0
  102. libfsfat-20260208/libcpath/libcpath_system_string.h +95 -0
  103. libfsfat-20260208/libcpath/libcpath_unused.h +44 -0
  104. libfsfat-20260208/libcsplit/Makefile.in +913 -0
  105. libfsfat-20260208/libcthreads/Makefile.in +948 -0
  106. libfsfat-20260208/libfcache/Makefile.in +909 -0
  107. libfsfat-20260208/libfdata/Makefile.in +962 -0
  108. libfsfat-20260208/libfdatetime/Makefile.in +940 -0
  109. libfsfat-20260208/libfguid/Makefile.in +890 -0
  110. libfsfat-20260208/libfsfat/Makefile.in +1087 -0
  111. libfsfat-20260208/libfsfat/fsfat_boot_record.h +425 -0
  112. libfsfat-20260208/libfsfat/fsfat_directory_entry.h +372 -0
  113. libfsfat-20260208/libfsfat/libfsfat.c +80 -0
  114. libfsfat-20260208/libfsfat/libfsfat.rc +38 -0
  115. libfsfat-20260208/libfsfat/libfsfat.rc.in +38 -0
  116. libfsfat-20260208/libfsfat/libfsfat_allocation_table.c +538 -0
  117. libfsfat-20260208/libfsfat/libfsfat_allocation_table.h +78 -0
  118. libfsfat-20260208/libfsfat/libfsfat_block_descriptor.c +131 -0
  119. libfsfat-20260208/libfsfat/libfsfat_block_descriptor.h +56 -0
  120. libfsfat-20260208/libfsfat/libfsfat_block_tree.c +474 -0
  121. libfsfat-20260208/libfsfat/libfsfat_block_tree.h +83 -0
  122. libfsfat-20260208/libfsfat/libfsfat_block_tree_node.c +613 -0
  123. libfsfat-20260208/libfsfat/libfsfat_block_tree_node.h +109 -0
  124. libfsfat-20260208/libfsfat/libfsfat_boot_record.c +992 -0
  125. libfsfat-20260208/libfsfat/libfsfat_boot_record.h +109 -0
  126. libfsfat-20260208/libfsfat/libfsfat_cluster_block_data.c +146 -0
  127. libfsfat-20260208/libfsfat/libfsfat_cluster_block_data.h +61 -0
  128. libfsfat-20260208/libfsfat/libfsfat_date_time.c +169 -0
  129. libfsfat-20260208/libfsfat/libfsfat_date_time.h +47 -0
  130. libfsfat-20260208/libfsfat/libfsfat_debug.c +428 -0
  131. libfsfat-20260208/libfsfat/libfsfat_debug.h +76 -0
  132. libfsfat-20260208/libfsfat/libfsfat_definitions.h +130 -0
  133. libfsfat-20260208/libfsfat/libfsfat_definitions.h.in +130 -0
  134. libfsfat-20260208/libfsfat/libfsfat_directory.c +741 -0
  135. libfsfat-20260208/libfsfat/libfsfat_directory.h +121 -0
  136. libfsfat-20260208/libfsfat/libfsfat_directory_entry.c +2502 -0
  137. libfsfat-20260208/libfsfat/libfsfat_directory_entry.h +257 -0
  138. libfsfat-20260208/libfsfat/libfsfat_error.c +111 -0
  139. libfsfat-20260208/libfsfat/libfsfat_error.h +74 -0
  140. libfsfat-20260208/libfsfat/libfsfat_extent.c +194 -0
  141. libfsfat-20260208/libfsfat/libfsfat_extent.h +67 -0
  142. libfsfat-20260208/libfsfat/libfsfat_extern.h +46 -0
  143. libfsfat-20260208/libfsfat/libfsfat_file_entry.c +2714 -0
  144. libfsfat-20260208/libfsfat/libfsfat_file_entry.h +273 -0
  145. libfsfat-20260208/libfsfat/libfsfat_file_system.c +3326 -0
  146. libfsfat-20260208/libfsfat/libfsfat_file_system.h +203 -0
  147. libfsfat-20260208/libfsfat/libfsfat_io_handle.c +174 -0
  148. libfsfat-20260208/libfsfat/libfsfat_io_handle.h +89 -0
  149. libfsfat-20260208/libfsfat/libfsfat_libbfio.h +58 -0
  150. libfsfat-20260208/libfsfat/libfsfat_libcdata.h +54 -0
  151. libfsfat-20260208/libfsfat/libfsfat_libcerror.h +50 -0
  152. libfsfat-20260208/libfsfat/libfsfat_libclocale.h +50 -0
  153. libfsfat-20260208/libfsfat/libfsfat_libcnotify.h +50 -0
  154. libfsfat-20260208/libfsfat/libfsfat_libcthreads.h +64 -0
  155. libfsfat-20260208/libfsfat/libfsfat_libfcache.h +50 -0
  156. libfsfat-20260208/libfsfat/libfsfat_libfdata.h +54 -0
  157. libfsfat-20260208/libfsfat/libfsfat_libfdatetime.h +56 -0
  158. libfsfat-20260208/libfsfat/libfsfat_libfguid.h +49 -0
  159. libfsfat-20260208/libfsfat/libfsfat_libuna.h +60 -0
  160. libfsfat-20260208/libfsfat/libfsfat_name.c +400 -0
  161. libfsfat-20260208/libfsfat/libfsfat_name.h +58 -0
  162. libfsfat-20260208/libfsfat/libfsfat_notify.c +120 -0
  163. libfsfat-20260208/libfsfat/libfsfat_notify.h +63 -0
  164. libfsfat-20260208/libfsfat/libfsfat_support.c +431 -0
  165. libfsfat-20260208/libfsfat/libfsfat_support.h +82 -0
  166. libfsfat-20260208/libfsfat/libfsfat_types.h +54 -0
  167. libfsfat-20260208/libfsfat/libfsfat_unused.h +44 -0
  168. libfsfat-20260208/libfsfat/libfsfat_volume.c +1976 -0
  169. libfsfat-20260208/libfsfat/libfsfat_volume.h +187 -0
  170. libfsfat-20260208/libfsfat.spec +100 -0
  171. libfsfat-20260208/libhmac/Makefile.in +953 -0
  172. libfsfat-20260208/libuna/Makefile.in +1309 -0
  173. libfsfat-20260208/ltmain.sh +11517 -0
  174. libfsfat-20260208/m4/common.m4 +634 -0
  175. libfsfat-20260208/m4/libbfio.m4 +215 -0
  176. libfsfat-20260208/m4/libcdata.m4 +227 -0
  177. libfsfat-20260208/m4/libcerror.m4 +186 -0
  178. libfsfat-20260208/m4/libcfile.m4 +317 -0
  179. libfsfat-20260208/m4/libclocale.m4 +242 -0
  180. libfsfat-20260208/m4/libcnotify.m4 +160 -0
  181. libfsfat-20260208/m4/libcpath.m4 +274 -0
  182. libfsfat-20260208/m4/libcrypto.m4 +996 -0
  183. libfsfat-20260208/m4/libcsplit.m4 +183 -0
  184. libfsfat-20260208/m4/libcthreads.m4 +214 -0
  185. libfsfat-20260208/m4/libfcache.m4 +173 -0
  186. libfsfat-20260208/m4/libfdata.m4 +241 -0
  187. libfsfat-20260208/m4/libfdatetime.m4 +219 -0
  188. libfsfat-20260208/m4/libfguid.m4 +153 -0
  189. libfsfat-20260208/m4/libhmac.m4 +210 -0
  190. libfsfat-20260208/m4/libtool.m4 +8491 -0
  191. libfsfat-20260208/m4/libuna.m4 +311 -0
  192. libfsfat-20260208/m4/ltoptions.m4 +467 -0
  193. libfsfat-20260208/m4/ltsugar.m4 +124 -0
  194. libfsfat-20260208/m4/ltversion.m4 +24 -0
  195. libfsfat-20260208/m4/lt~obsolete.m4 +99 -0
  196. libfsfat-20260208/m4/pthread.m4 +108 -0
  197. libfsfat-20260208/m4/python.m4 +208 -0
  198. libfsfat-20260208/manuals/Makefile.in +836 -0
  199. libfsfat-20260208/manuals/fsfatmount.1 +61 -0
  200. libfsfat-20260208/manuals/libfsfat.3 +167 -0
  201. libfsfat-20260208/missing +236 -0
  202. libfsfat-20260208/msvscpp/Makefile.am +48 -0
  203. libfsfat-20260208/msvscpp/Makefile.in +747 -0
  204. libfsfat-20260208/msvscpp/fsfat_test_tools_mount_path_string/fsfat_test_tools_mount_path_string.vcproj +222 -0
  205. libfsfat-20260208/msvscpp/fsfatmount/fsfatmount.vcproj +308 -0
  206. libfsfat-20260208/msvscpp/libfsfat.sln +479 -0
  207. libfsfat-20260208/msvscpp/libhmac/libhmac.vcproj +289 -0
  208. libfsfat-20260208/msvscpp/pyfsfat/pyfsfat.vcproj +288 -0
  209. libfsfat-20260208/ossfuzz/Makefile.in +986 -0
  210. libfsfat-20260208/ossfuzz/file_entry_fuzzer.cc +133 -0
  211. libfsfat-20260208/ossfuzz/ossfuzz_libbfio.h +58 -0
  212. libfsfat-20260208/ossfuzz/ossfuzz_libfsfat.h +30 -0
  213. libfsfat-20260208/ossfuzz/volume_fuzzer.cc +99 -0
  214. libfsfat-20260208/pyfsfat/Makefile.in +1081 -0
  215. libfsfat-20260208/pyfsfat/pyfsfat.c +724 -0
  216. libfsfat-20260208/pyfsfat/pyfsfat.h +71 -0
  217. libfsfat-20260208/pyfsfat/pyfsfat_datetime.c +691 -0
  218. libfsfat-20260208/pyfsfat/pyfsfat_datetime.h +65 -0
  219. libfsfat-20260208/pyfsfat/pyfsfat_error.c +422 -0
  220. libfsfat-20260208/pyfsfat/pyfsfat_error.h +60 -0
  221. libfsfat-20260208/pyfsfat/pyfsfat_file_attribute_flags.c +348 -0
  222. libfsfat-20260208/pyfsfat/pyfsfat_file_attribute_flags.h +63 -0
  223. libfsfat-20260208/pyfsfat/pyfsfat_file_entries.c +452 -0
  224. libfsfat-20260208/pyfsfat/pyfsfat_file_entries.h +95 -0
  225. libfsfat-20260208/pyfsfat/pyfsfat_file_entry.c +2201 -0
  226. libfsfat-20260208/pyfsfat/pyfsfat_file_entry.h +164 -0
  227. libfsfat-20260208/pyfsfat/pyfsfat_file_object_io_handle.c +1524 -0
  228. libfsfat-20260208/pyfsfat/pyfsfat_file_object_io_handle.h +141 -0
  229. libfsfat-20260208/pyfsfat/pyfsfat_file_system_formats.c +320 -0
  230. libfsfat-20260208/pyfsfat/pyfsfat_file_system_formats.h +63 -0
  231. libfsfat-20260208/pyfsfat/pyfsfat_integer.c +399 -0
  232. libfsfat-20260208/pyfsfat/pyfsfat_integer.h +56 -0
  233. libfsfat-20260208/pyfsfat/pyfsfat_libbfio.h +54 -0
  234. libfsfat-20260208/pyfsfat/pyfsfat_libcerror.h +50 -0
  235. libfsfat-20260208/pyfsfat/pyfsfat_libfsfat.h +30 -0
  236. libfsfat-20260208/pyfsfat/pyfsfat_python.h +83 -0
  237. libfsfat-20260208/pyfsfat/pyfsfat_unused.h +44 -0
  238. libfsfat-20260208/pyfsfat/pyfsfat_volume.c +1279 -0
  239. libfsfat-20260208/pyfsfat/pyfsfat_volume.h +107 -0
  240. libfsfat-20260208/setup.cfg +16 -0
  241. libfsfat-20260208/setup.cfg.in +16 -0
  242. libfsfat-20260208/setup.py +290 -0
  243. libfsfat-20260208/test-driver +160 -0
  244. libfsfat-20260208/tests/Makefile.am +361 -0
  245. libfsfat-20260208/tests/Makefile.in +1941 -0
  246. libfsfat-20260208/tests/fsfat_test_allocation_table.c +320 -0
  247. libfsfat-20260208/tests/fsfat_test_block_descriptor.c +311 -0
  248. libfsfat-20260208/tests/fsfat_test_block_tree.c +752 -0
  249. libfsfat-20260208/tests/fsfat_test_block_tree_node.c +331 -0
  250. libfsfat-20260208/tests/fsfat_test_boot_record.c +847 -0
  251. libfsfat-20260208/tests/fsfat_test_directory.c +351 -0
  252. libfsfat-20260208/tests/fsfat_test_directory_entry.c +724 -0
  253. libfsfat-20260208/tests/fsfat_test_error.c +150 -0
  254. libfsfat-20260208/tests/fsfat_test_extent.c +316 -0
  255. libfsfat-20260208/tests/fsfat_test_file_entry.c +160 -0
  256. libfsfat-20260208/tests/fsfat_test_functions.c +672 -0
  257. libfsfat-20260208/tests/fsfat_test_functions.h +72 -0
  258. libfsfat-20260208/tests/fsfat_test_getopt.c +190 -0
  259. libfsfat-20260208/tests/fsfat_test_getopt.h +68 -0
  260. libfsfat-20260208/tests/fsfat_test_io_handle.c +439 -0
  261. libfsfat-20260208/tests/fsfat_test_libbfio.h +58 -0
  262. libfsfat-20260208/tests/fsfat_test_libcerror.h +50 -0
  263. libfsfat-20260208/tests/fsfat_test_libclocale.h +50 -0
  264. libfsfat-20260208/tests/fsfat_test_libcnotify.h +50 -0
  265. libfsfat-20260208/tests/fsfat_test_libcpath.h +48 -0
  266. libfsfat-20260208/tests/fsfat_test_libfsfat.h +30 -0
  267. libfsfat-20260208/tests/fsfat_test_libuna.h +60 -0
  268. libfsfat-20260208/tests/fsfat_test_macros.h +257 -0
  269. libfsfat-20260208/tests/fsfat_test_memory.c +177 -0
  270. libfsfat-20260208/tests/fsfat_test_memory.h +52 -0
  271. libfsfat-20260208/tests/fsfat_test_name.c +566 -0
  272. libfsfat-20260208/tests/fsfat_test_notify.c +229 -0
  273. libfsfat-20260208/tests/fsfat_test_support.c +833 -0
  274. libfsfat-20260208/tests/fsfat_test_tools_info_handle.c +304 -0
  275. libfsfat-20260208/tests/fsfat_test_tools_mount_path_string.c +929 -0
  276. libfsfat-20260208/tests/fsfat_test_tools_output.c +105 -0
  277. libfsfat-20260208/tests/fsfat_test_tools_signal.c +213 -0
  278. libfsfat-20260208/tests/fsfat_test_unused.h +50 -0
  279. libfsfat-20260208/tests/fsfat_test_volume.c +2021 -0
  280. libfsfat-20260208/tests/pyfsfat_test_support.py +111 -0
  281. libfsfat-20260208/tests/pyfsfat_test_volume.py +327 -0
  282. libfsfat-20260208/tests/test_tools.sh +193 -0
  283. libfsfat-20240501/AUTHORS +0 -4
  284. libfsfat-20240501/INSTALL +0 -368
  285. libfsfat-20240501/Makefile.in +0 -1228
  286. libfsfat-20240501/PKG-INFO +0 -13
  287. libfsfat-20240501/aclocal.m4 +0 -1549
  288. libfsfat-20240501/common/Makefile.in +0 -794
  289. libfsfat-20240501/common/byte_stream.h +0 -257
  290. libfsfat-20240501/common/common.h +0 -43
  291. libfsfat-20240501/common/config.h +0 -662
  292. libfsfat-20240501/common/config.h.in +0 -661
  293. libfsfat-20240501/common/config_borlandc.h +0 -26
  294. libfsfat-20240501/common/config_msc.h +0 -34
  295. libfsfat-20240501/common/config_winapi.h +0 -95
  296. libfsfat-20240501/common/file_stream.h +0 -151
  297. libfsfat-20240501/common/memory.h +0 -129
  298. libfsfat-20240501/common/narrow_string.h +0 -187
  299. libfsfat-20240501/common/system_string.h +0 -154
  300. libfsfat-20240501/common/types.h +0 -392
  301. libfsfat-20240501/common/types.h.in +0 -392
  302. libfsfat-20240501/common/wide_string.h +0 -175
  303. libfsfat-20240501/compile +0 -348
  304. libfsfat-20240501/config.guess +0 -1774
  305. libfsfat-20240501/config.sub +0 -1907
  306. libfsfat-20240501/configure +0 -64082
  307. libfsfat-20240501/configure.ac +0 -250
  308. libfsfat-20240501/depcomp +0 -791
  309. libfsfat-20240501/dpkg/changelog +0 -5
  310. libfsfat-20240501/dpkg/copyright +0 -25
  311. libfsfat-20240501/fsfattools/Makefile.am +0 -110
  312. libfsfat-20240501/fsfattools/Makefile.in +0 -1039
  313. libfsfat-20240501/fsfattools/digest_hash.c +0 -129
  314. libfsfat-20240501/fsfattools/digest_hash.h +0 -46
  315. libfsfat-20240501/fsfattools/fsfatinfo.c +0 -463
  316. libfsfat-20240501/fsfattools/fsfatmount.c +0 -604
  317. libfsfat-20240501/fsfattools/fsfattools_getopt.c +0 -190
  318. libfsfat-20240501/fsfattools/fsfattools_getopt.h +0 -68
  319. libfsfat-20240501/fsfattools/fsfattools_i18n.h +0 -48
  320. libfsfat-20240501/fsfattools/fsfattools_libbfio.h +0 -58
  321. libfsfat-20240501/fsfattools/fsfattools_libcerror.h +0 -50
  322. libfsfat-20240501/fsfattools/fsfattools_libclocale.h +0 -50
  323. libfsfat-20240501/fsfattools/fsfattools_libcnotify.h +0 -50
  324. libfsfat-20240501/fsfattools/fsfattools_libcpath.h +0 -48
  325. libfsfat-20240501/fsfattools/fsfattools_libfcache.h +0 -50
  326. libfsfat-20240501/fsfattools/fsfattools_libfdata.h +0 -54
  327. libfsfat-20240501/fsfattools/fsfattools_libfdatetime.h +0 -56
  328. libfsfat-20240501/fsfattools/fsfattools_libfguid.h +0 -49
  329. libfsfat-20240501/fsfattools/fsfattools_libfsfat.h +0 -30
  330. libfsfat-20240501/fsfattools/fsfattools_libhmac.h +0 -51
  331. libfsfat-20240501/fsfattools/fsfattools_libuna.h +0 -60
  332. libfsfat-20240501/fsfattools/fsfattools_output.c +0 -206
  333. libfsfat-20240501/fsfattools/fsfattools_output.h +0 -55
  334. libfsfat-20240501/fsfattools/fsfattools_signal.c +0 -262
  335. libfsfat-20240501/fsfattools/fsfattools_signal.h +0 -72
  336. libfsfat-20240501/fsfattools/fsfattools_unused.h +0 -50
  337. libfsfat-20240501/fsfattools/info_handle.c +0 -2536
  338. libfsfat-20240501/fsfattools/info_handle.h +0 -178
  339. libfsfat-20240501/fsfattools/mount_dokan.c +0 -1569
  340. libfsfat-20240501/fsfattools/mount_dokan.h +0 -171
  341. libfsfat-20240501/fsfattools/mount_file_entry.c +0 -921
  342. libfsfat-20240501/fsfattools/mount_file_entry.h +0 -133
  343. libfsfat-20240501/fsfattools/mount_file_system.c +0 -1277
  344. libfsfat-20240501/fsfattools/mount_file_system.h +0 -110
  345. libfsfat-20240501/fsfattools/mount_fuse.c +0 -1278
  346. libfsfat-20240501/fsfattools/mount_fuse.h +0 -123
  347. libfsfat-20240501/fsfattools/mount_handle.c +0 -897
  348. libfsfat-20240501/fsfattools/mount_handle.h +0 -138
  349. libfsfat-20240501/include/Makefile.in +0 -856
  350. libfsfat-20240501/include/libfsfat/codepage.h +0 -122
  351. libfsfat-20240501/include/libfsfat/definitions.h +0 -82
  352. libfsfat-20240501/include/libfsfat/definitions.h.in +0 -82
  353. libfsfat-20240501/include/libfsfat/error.h +0 -291
  354. libfsfat-20240501/include/libfsfat/extern.h +0 -44
  355. libfsfat-20240501/include/libfsfat/features.h +0 -50
  356. libfsfat-20240501/include/libfsfat/features.h.in +0 -50
  357. libfsfat-20240501/include/libfsfat/types.h +0 -212
  358. libfsfat-20240501/include/libfsfat/types.h.in +0 -212
  359. libfsfat-20240501/include/libfsfat.h +0 -583
  360. libfsfat-20240501/include/libfsfat.h.in +0 -583
  361. libfsfat-20240501/install-sh +0 -541
  362. libfsfat-20240501/libbfio/Makefile.in +0 -957
  363. libfsfat-20240501/libcdata/Makefile.in +0 -936
  364. libfsfat-20240501/libcerror/Makefile.in +0 -878
  365. libfsfat-20240501/libcfile/Makefile.in +0 -905
  366. libfsfat-20240501/libclocale/Makefile.in +0 -888
  367. libfsfat-20240501/libcnotify/Makefile.in +0 -886
  368. libfsfat-20240501/libcpath/Makefile.in +0 -890
  369. libfsfat-20240501/libcpath/libcpath_definitions.h +0 -83
  370. libfsfat-20240501/libcpath/libcpath_error.c +0 -111
  371. libfsfat-20240501/libcpath/libcpath_error.h +0 -74
  372. libfsfat-20240501/libcpath/libcpath_extern.h +0 -46
  373. libfsfat-20240501/libcpath/libcpath_libcerror.h +0 -50
  374. libfsfat-20240501/libcpath/libcpath_libclocale.h +0 -50
  375. libfsfat-20240501/libcpath/libcpath_libcsplit.h +0 -52
  376. libfsfat-20240501/libcpath/libcpath_libuna.h +0 -60
  377. libfsfat-20240501/libcpath/libcpath_path.c +0 -7174
  378. libfsfat-20240501/libcpath/libcpath_path.h +0 -273
  379. libfsfat-20240501/libcpath/libcpath_support.c +0 -93
  380. libfsfat-20240501/libcpath/libcpath_support.h +0 -58
  381. libfsfat-20240501/libcpath/libcpath_system_string.c +0 -1017
  382. libfsfat-20240501/libcpath/libcpath_system_string.h +0 -95
  383. libfsfat-20240501/libcpath/libcpath_unused.h +0 -44
  384. libfsfat-20240501/libcsplit/Makefile.in +0 -903
  385. libfsfat-20240501/libcthreads/Makefile.in +0 -938
  386. libfsfat-20240501/libfcache/Makefile.in +0 -899
  387. libfsfat-20240501/libfdata/Makefile.in +0 -952
  388. libfsfat-20240501/libfdatetime/Makefile.in +0 -930
  389. libfsfat-20240501/libfguid/Makefile.in +0 -880
  390. libfsfat-20240501/libfsfat/Makefile.in +0 -1078
  391. libfsfat-20240501/libfsfat/fsfat_boot_record.h +0 -425
  392. libfsfat-20240501/libfsfat/fsfat_directory_entry.h +0 -372
  393. libfsfat-20240501/libfsfat/libfsfat.c +0 -80
  394. libfsfat-20240501/libfsfat/libfsfat.rc +0 -38
  395. libfsfat-20240501/libfsfat/libfsfat.rc.in +0 -38
  396. libfsfat-20240501/libfsfat/libfsfat_allocation_table.c +0 -538
  397. libfsfat-20240501/libfsfat/libfsfat_allocation_table.h +0 -78
  398. libfsfat-20240501/libfsfat/libfsfat_block_descriptor.c +0 -131
  399. libfsfat-20240501/libfsfat/libfsfat_block_descriptor.h +0 -56
  400. libfsfat-20240501/libfsfat/libfsfat_block_tree.c +0 -474
  401. libfsfat-20240501/libfsfat/libfsfat_block_tree.h +0 -83
  402. libfsfat-20240501/libfsfat/libfsfat_block_tree_node.c +0 -613
  403. libfsfat-20240501/libfsfat/libfsfat_block_tree_node.h +0 -109
  404. libfsfat-20240501/libfsfat/libfsfat_boot_record.c +0 -994
  405. libfsfat-20240501/libfsfat/libfsfat_boot_record.h +0 -109
  406. libfsfat-20240501/libfsfat/libfsfat_cluster_block_data.c +0 -146
  407. libfsfat-20240501/libfsfat/libfsfat_cluster_block_data.h +0 -61
  408. libfsfat-20240501/libfsfat/libfsfat_date_time.c +0 -169
  409. libfsfat-20240501/libfsfat/libfsfat_date_time.h +0 -47
  410. libfsfat-20240501/libfsfat/libfsfat_debug.c +0 -428
  411. libfsfat-20240501/libfsfat/libfsfat_debug.h +0 -76
  412. libfsfat-20240501/libfsfat/libfsfat_definitions.h +0 -130
  413. libfsfat-20240501/libfsfat/libfsfat_definitions.h.in +0 -130
  414. libfsfat-20240501/libfsfat/libfsfat_directory.c +0 -741
  415. libfsfat-20240501/libfsfat/libfsfat_directory.h +0 -121
  416. libfsfat-20240501/libfsfat/libfsfat_directory_entry.c +0 -2455
  417. libfsfat-20240501/libfsfat/libfsfat_directory_entry.h +0 -253
  418. libfsfat-20240501/libfsfat/libfsfat_error.c +0 -111
  419. libfsfat-20240501/libfsfat/libfsfat_error.h +0 -74
  420. libfsfat-20240501/libfsfat/libfsfat_extent.c +0 -194
  421. libfsfat-20240501/libfsfat/libfsfat_extent.h +0 -67
  422. libfsfat-20240501/libfsfat/libfsfat_extern.h +0 -46
  423. libfsfat-20240501/libfsfat/libfsfat_file_entry.c +0 -2714
  424. libfsfat-20240501/libfsfat/libfsfat_file_entry.h +0 -273
  425. libfsfat-20240501/libfsfat/libfsfat_file_system.c +0 -3334
  426. libfsfat-20240501/libfsfat/libfsfat_file_system.h +0 -203
  427. libfsfat-20240501/libfsfat/libfsfat_io_handle.c +0 -174
  428. libfsfat-20240501/libfsfat/libfsfat_io_handle.h +0 -89
  429. libfsfat-20240501/libfsfat/libfsfat_libbfio.h +0 -58
  430. libfsfat-20240501/libfsfat/libfsfat_libcdata.h +0 -54
  431. libfsfat-20240501/libfsfat/libfsfat_libcerror.h +0 -50
  432. libfsfat-20240501/libfsfat/libfsfat_libclocale.h +0 -50
  433. libfsfat-20240501/libfsfat/libfsfat_libcnotify.h +0 -50
  434. libfsfat-20240501/libfsfat/libfsfat_libcthreads.h +0 -64
  435. libfsfat-20240501/libfsfat/libfsfat_libfcache.h +0 -50
  436. libfsfat-20240501/libfsfat/libfsfat_libfdata.h +0 -54
  437. libfsfat-20240501/libfsfat/libfsfat_libfdatetime.h +0 -56
  438. libfsfat-20240501/libfsfat/libfsfat_libfguid.h +0 -49
  439. libfsfat-20240501/libfsfat/libfsfat_libuna.h +0 -60
  440. libfsfat-20240501/libfsfat/libfsfat_name.c +0 -400
  441. libfsfat-20240501/libfsfat/libfsfat_name.h +0 -58
  442. libfsfat-20240501/libfsfat/libfsfat_notify.c +0 -120
  443. libfsfat-20240501/libfsfat/libfsfat_notify.h +0 -63
  444. libfsfat-20240501/libfsfat/libfsfat_support.c +0 -431
  445. libfsfat-20240501/libfsfat/libfsfat_support.h +0 -82
  446. libfsfat-20240501/libfsfat/libfsfat_types.h +0 -54
  447. libfsfat-20240501/libfsfat/libfsfat_unused.h +0 -44
  448. libfsfat-20240501/libfsfat/libfsfat_volume.c +0 -1974
  449. libfsfat-20240501/libfsfat/libfsfat_volume.h +0 -187
  450. libfsfat-20240501/libfsfat.spec +0 -100
  451. libfsfat-20240501/libhmac/Makefile.in +0 -943
  452. libfsfat-20240501/libuna/Makefile.in +0 -1299
  453. libfsfat-20240501/ltmain.sh +0 -11429
  454. libfsfat-20240501/m4/common.m4 +0 -578
  455. libfsfat-20240501/m4/libbfio.m4 +0 -422
  456. libfsfat-20240501/m4/libcdata.m4 +0 -599
  457. libfsfat-20240501/m4/libcerror.m4 +0 -237
  458. libfsfat-20240501/m4/libcfile.m4 +0 -429
  459. libfsfat-20240501/m4/libclocale.m4 +0 -291
  460. libfsfat-20240501/m4/libcnotify.m4 +0 -209
  461. libfsfat-20240501/m4/libcpath.m4 +0 -344
  462. libfsfat-20240501/m4/libcrypto.m4 +0 -1000
  463. libfsfat-20240501/m4/libcsplit.m4 +0 -249
  464. libfsfat-20240501/m4/libcthreads.m4 +0 -385
  465. libfsfat-20240501/m4/libfcache.m4 +0 -266
  466. libfsfat-20240501/m4/libfdata.m4 +0 -555
  467. libfsfat-20240501/m4/libfdatetime.m4 +0 -560
  468. libfsfat-20240501/m4/libfguid.m4 +0 -210
  469. libfsfat-20240501/m4/libhmac.m4 +0 -315
  470. libfsfat-20240501/m4/libtool.m4 +0 -8403
  471. libfsfat-20240501/m4/libuna.m4 +0 -1044
  472. libfsfat-20240501/m4/ltoptions.m4 +0 -437
  473. libfsfat-20240501/m4/ltsugar.m4 +0 -124
  474. libfsfat-20240501/m4/ltversion.m4 +0 -24
  475. libfsfat-20240501/m4/lt~obsolete.m4 +0 -99
  476. libfsfat-20240501/m4/pthread.m4 +0 -196
  477. libfsfat-20240501/m4/python.m4 +0 -208
  478. libfsfat-20240501/manuals/Makefile.in +0 -825
  479. libfsfat-20240501/manuals/fsfatmount.1 +0 -61
  480. libfsfat-20240501/manuals/libfsfat.3 +0 -167
  481. libfsfat-20240501/missing +0 -215
  482. libfsfat-20240501/msvscpp/Makefile.am +0 -47
  483. libfsfat-20240501/msvscpp/Makefile.in +0 -734
  484. libfsfat-20240501/msvscpp/fsfatmount/fsfatmount.vcproj +0 -300
  485. libfsfat-20240501/msvscpp/libfsfat.sln +0 -468
  486. libfsfat-20240501/msvscpp/libhmac/libhmac.vcproj +0 -249
  487. libfsfat-20240501/msvscpp/pyfsfat/pyfsfat.vcproj +0 -288
  488. libfsfat-20240501/ossfuzz/Makefile.in +0 -979
  489. libfsfat-20240501/ossfuzz/file_entry_fuzzer.cc +0 -133
  490. libfsfat-20240501/ossfuzz/ossfuzz_libbfio.h +0 -58
  491. libfsfat-20240501/ossfuzz/ossfuzz_libfsfat.h +0 -30
  492. libfsfat-20240501/ossfuzz/volume_fuzzer.cc +0 -99
  493. libfsfat-20240501/pyfsfat/Makefile.in +0 -1072
  494. libfsfat-20240501/pyfsfat/pyfsfat.c +0 -724
  495. libfsfat-20240501/pyfsfat/pyfsfat.h +0 -71
  496. libfsfat-20240501/pyfsfat/pyfsfat_datetime.c +0 -691
  497. libfsfat-20240501/pyfsfat/pyfsfat_datetime.h +0 -65
  498. libfsfat-20240501/pyfsfat/pyfsfat_error.c +0 -422
  499. libfsfat-20240501/pyfsfat/pyfsfat_error.h +0 -60
  500. libfsfat-20240501/pyfsfat/pyfsfat_file_attribute_flags.c +0 -348
  501. libfsfat-20240501/pyfsfat/pyfsfat_file_attribute_flags.h +0 -63
  502. libfsfat-20240501/pyfsfat/pyfsfat_file_entries.c +0 -452
  503. libfsfat-20240501/pyfsfat/pyfsfat_file_entries.h +0 -95
  504. libfsfat-20240501/pyfsfat/pyfsfat_file_entry.c +0 -2201
  505. libfsfat-20240501/pyfsfat/pyfsfat_file_entry.h +0 -164
  506. libfsfat-20240501/pyfsfat/pyfsfat_file_object_io_handle.c +0 -1524
  507. libfsfat-20240501/pyfsfat/pyfsfat_file_object_io_handle.h +0 -141
  508. libfsfat-20240501/pyfsfat/pyfsfat_file_system_formats.c +0 -320
  509. libfsfat-20240501/pyfsfat/pyfsfat_file_system_formats.h +0 -63
  510. libfsfat-20240501/pyfsfat/pyfsfat_integer.c +0 -399
  511. libfsfat-20240501/pyfsfat/pyfsfat_integer.h +0 -56
  512. libfsfat-20240501/pyfsfat/pyfsfat_libbfio.h +0 -54
  513. libfsfat-20240501/pyfsfat/pyfsfat_libcerror.h +0 -50
  514. libfsfat-20240501/pyfsfat/pyfsfat_libfsfat.h +0 -30
  515. libfsfat-20240501/pyfsfat/pyfsfat_python.h +0 -83
  516. libfsfat-20240501/pyfsfat/pyfsfat_unused.h +0 -44
  517. libfsfat-20240501/pyfsfat/pyfsfat_volume.c +0 -1279
  518. libfsfat-20240501/pyfsfat/pyfsfat_volume.h +0 -107
  519. libfsfat-20240501/setup.cfg +0 -16
  520. libfsfat-20240501/setup.cfg.in +0 -16
  521. libfsfat-20240501/setup.py +0 -293
  522. libfsfat-20240501/test-driver +0 -153
  523. libfsfat-20240501/tests/Makefile.am +0 -347
  524. libfsfat-20240501/tests/Makefile.in +0 -1866
  525. libfsfat-20240501/tests/fsfat_test_allocation_table.c +0 -320
  526. libfsfat-20240501/tests/fsfat_test_block_descriptor.c +0 -311
  527. libfsfat-20240501/tests/fsfat_test_block_tree.c +0 -752
  528. libfsfat-20240501/tests/fsfat_test_block_tree_node.c +0 -331
  529. libfsfat-20240501/tests/fsfat_test_boot_record.c +0 -847
  530. libfsfat-20240501/tests/fsfat_test_directory.c +0 -351
  531. libfsfat-20240501/tests/fsfat_test_directory_entry.c +0 -724
  532. libfsfat-20240501/tests/fsfat_test_error.c +0 -150
  533. libfsfat-20240501/tests/fsfat_test_extent.c +0 -316
  534. libfsfat-20240501/tests/fsfat_test_file_entry.c +0 -160
  535. libfsfat-20240501/tests/fsfat_test_functions.c +0 -672
  536. libfsfat-20240501/tests/fsfat_test_functions.h +0 -72
  537. libfsfat-20240501/tests/fsfat_test_getopt.c +0 -190
  538. libfsfat-20240501/tests/fsfat_test_getopt.h +0 -68
  539. libfsfat-20240501/tests/fsfat_test_io_handle.c +0 -439
  540. libfsfat-20240501/tests/fsfat_test_libbfio.h +0 -58
  541. libfsfat-20240501/tests/fsfat_test_libcerror.h +0 -50
  542. libfsfat-20240501/tests/fsfat_test_libclocale.h +0 -50
  543. libfsfat-20240501/tests/fsfat_test_libcnotify.h +0 -50
  544. libfsfat-20240501/tests/fsfat_test_libfsfat.h +0 -30
  545. libfsfat-20240501/tests/fsfat_test_libuna.h +0 -60
  546. libfsfat-20240501/tests/fsfat_test_macros.h +0 -257
  547. libfsfat-20240501/tests/fsfat_test_memory.c +0 -177
  548. libfsfat-20240501/tests/fsfat_test_memory.h +0 -52
  549. libfsfat-20240501/tests/fsfat_test_name.c +0 -566
  550. libfsfat-20240501/tests/fsfat_test_notify.c +0 -229
  551. libfsfat-20240501/tests/fsfat_test_support.c +0 -833
  552. libfsfat-20240501/tests/fsfat_test_tools_info_handle.c +0 -304
  553. libfsfat-20240501/tests/fsfat_test_tools_output.c +0 -105
  554. libfsfat-20240501/tests/fsfat_test_tools_signal.c +0 -213
  555. libfsfat-20240501/tests/fsfat_test_unused.h +0 -50
  556. libfsfat-20240501/tests/fsfat_test_volume.c +0 -2021
  557. libfsfat-20240501/tests/pyfsfat_test_support.py +0 -111
  558. libfsfat-20240501/tests/pyfsfat_test_volume.py +0 -327
  559. libfsfat-20240501/tests/test_tools.sh +0 -193
  560. {libfsfat-20240501 → libfsfat-20260208}/ABOUT-NLS +0 -0
  561. {libfsfat-20240501 → libfsfat-20260208}/COPYING +0 -0
  562. {libfsfat-20240501 → libfsfat-20260208}/COPYING.LESSER +0 -0
  563. {libfsfat-20240501 → libfsfat-20260208}/ChangeLog +0 -0
  564. {libfsfat-20240501 → libfsfat-20260208}/Makefile.am +0 -0
  565. {libfsfat-20240501 → libfsfat-20260208}/NEWS +0 -0
  566. {libfsfat-20240501 → libfsfat-20260208}/README +0 -0
  567. {libfsfat-20240501 → libfsfat-20260208}/acinclude.m4 +0 -0
  568. {libfsfat-20240501 → libfsfat-20260208}/common/Makefile.am +0 -0
  569. {libfsfat-20240501 → libfsfat-20260208}/config.rpath +0 -0
  570. {libfsfat-20240501 → libfsfat-20260208}/dpkg/changelog.in +0 -0
  571. {libfsfat-20240501 → libfsfat-20260208}/dpkg/compat +0 -0
  572. {libfsfat-20240501 → libfsfat-20260208}/dpkg/control +0 -0
  573. {libfsfat-20240501 → libfsfat-20260208}/dpkg/libfsfat-dev.install +0 -0
  574. {libfsfat-20240501 → libfsfat-20260208}/dpkg/libfsfat-python3.install +0 -0
  575. {libfsfat-20240501 → libfsfat-20260208}/dpkg/libfsfat-tools.install +0 -0
  576. {libfsfat-20240501 → libfsfat-20260208}/dpkg/libfsfat.install +0 -0
  577. {libfsfat-20240501 → libfsfat-20260208}/dpkg/rules +0 -0
  578. {libfsfat-20240501 → libfsfat-20260208}/dpkg/source/format +0 -0
  579. {libfsfat-20240501 → libfsfat-20260208}/include/Makefile.am +0 -0
  580. {libfsfat-20240501 → libfsfat-20260208}/libbfio/Makefile.am +0 -0
  581. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_codepage.h +0 -0
  582. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_definitions.h +0 -0
  583. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_error.c +0 -0
  584. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_error.h +0 -0
  585. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_extern.h +0 -0
  586. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_file.c +0 -0
  587. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_file.h +0 -0
  588. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_file_io_handle.c +0 -0
  589. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_file_io_handle.h +0 -0
  590. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_file_pool.c +0 -0
  591. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_file_pool.h +0 -0
  592. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_file_range.c +0 -0
  593. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_file_range.h +0 -0
  594. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_file_range_io_handle.c +0 -0
  595. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_file_range_io_handle.h +0 -0
  596. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_handle.c +0 -0
  597. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_handle.h +0 -0
  598. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_libcdata.h +0 -0
  599. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_libcerror.h +0 -0
  600. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_libcfile.h +0 -0
  601. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_libclocale.h +0 -0
  602. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_libcpath.h +0 -0
  603. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_libcthreads.h +0 -0
  604. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_libuna.h +0 -0
  605. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_memory_range.c +0 -0
  606. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_memory_range.h +0 -0
  607. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_memory_range_io_handle.c +0 -0
  608. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_memory_range_io_handle.h +0 -0
  609. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_pool.c +0 -0
  610. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_pool.h +0 -0
  611. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_support.c +0 -0
  612. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_support.h +0 -0
  613. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_system_string.c +0 -0
  614. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_system_string.h +0 -0
  615. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_types.h +0 -0
  616. {libfsfat-20240501 → libfsfat-20260208}/libbfio/libbfio_unused.h +0 -0
  617. {libfsfat-20240501 → libfsfat-20260208}/libcdata/Makefile.am +0 -0
  618. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_array.c +0 -0
  619. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_array.h +0 -0
  620. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_btree.c +0 -0
  621. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_btree.h +0 -0
  622. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_btree_node.c +0 -0
  623. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_btree_node.h +0 -0
  624. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_btree_values_list.c +0 -0
  625. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_btree_values_list.h +0 -0
  626. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_definitions.h +0 -0
  627. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_error.c +0 -0
  628. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_error.h +0 -0
  629. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_extern.h +0 -0
  630. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_libcerror.h +0 -0
  631. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_libcthreads.h +0 -0
  632. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_list.c +0 -0
  633. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_list.h +0 -0
  634. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_list_element.c +0 -0
  635. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_list_element.h +0 -0
  636. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_range_list.c +0 -0
  637. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_range_list.h +0 -0
  638. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_range_list_value.c +0 -0
  639. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_range_list_value.h +0 -0
  640. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_support.c +0 -0
  641. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_support.h +0 -0
  642. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_tree_node.c +0 -0
  643. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_tree_node.h +0 -0
  644. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_types.h +0 -0
  645. {libfsfat-20240501 → libfsfat-20260208}/libcdata/libcdata_unused.h +0 -0
  646. {libfsfat-20240501 → libfsfat-20260208}/libcerror/Makefile.am +0 -0
  647. {libfsfat-20240501 → libfsfat-20260208}/libcerror/libcerror_definitions.h +0 -0
  648. {libfsfat-20240501 → libfsfat-20260208}/libcerror/libcerror_error.c +0 -0
  649. {libfsfat-20240501 → libfsfat-20260208}/libcerror/libcerror_error.h +0 -0
  650. {libfsfat-20240501 → libfsfat-20260208}/libcerror/libcerror_extern.h +0 -0
  651. {libfsfat-20240501 → libfsfat-20260208}/libcerror/libcerror_support.c +0 -0
  652. {libfsfat-20240501 → libfsfat-20260208}/libcerror/libcerror_support.h +0 -0
  653. {libfsfat-20240501 → libfsfat-20260208}/libcerror/libcerror_system.c +0 -0
  654. {libfsfat-20240501 → libfsfat-20260208}/libcerror/libcerror_system.h +0 -0
  655. {libfsfat-20240501 → libfsfat-20260208}/libcerror/libcerror_types.h +0 -0
  656. {libfsfat-20240501 → libfsfat-20260208}/libcerror/libcerror_unused.h +0 -0
  657. {libfsfat-20240501 → libfsfat-20260208}/libcfile/Makefile.am +0 -0
  658. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_definitions.h +0 -0
  659. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_error.c +0 -0
  660. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_error.h +0 -0
  661. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_extern.h +0 -0
  662. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_file.c +0 -0
  663. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_file.h +0 -0
  664. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_libcerror.h +0 -0
  665. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_libclocale.h +0 -0
  666. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_libcnotify.h +0 -0
  667. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_libuna.h +0 -0
  668. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_notify.c +0 -0
  669. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_notify.h +0 -0
  670. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_support.c +0 -0
  671. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_support.h +0 -0
  672. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_system_string.c +0 -0
  673. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_system_string.h +0 -0
  674. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_types.h +0 -0
  675. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_unused.h +0 -0
  676. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_winapi.c +0 -0
  677. {libfsfat-20240501 → libfsfat-20260208}/libcfile/libcfile_winapi.h +0 -0
  678. {libfsfat-20240501 → libfsfat-20260208}/libclocale/Makefile.am +0 -0
  679. {libfsfat-20240501 → libfsfat-20260208}/libclocale/libclocale_codepage.c +0 -0
  680. {libfsfat-20240501 → libfsfat-20260208}/libclocale/libclocale_codepage.h +0 -0
  681. {libfsfat-20240501 → libfsfat-20260208}/libclocale/libclocale_definitions.h +0 -0
  682. {libfsfat-20240501 → libfsfat-20260208}/libclocale/libclocale_extern.h +0 -0
  683. {libfsfat-20240501 → libfsfat-20260208}/libclocale/libclocale_libcerror.h +0 -0
  684. {libfsfat-20240501 → libfsfat-20260208}/libclocale/libclocale_locale.c +0 -0
  685. {libfsfat-20240501 → libfsfat-20260208}/libclocale/libclocale_locale.h +0 -0
  686. {libfsfat-20240501 → libfsfat-20260208}/libclocale/libclocale_support.c +0 -0
  687. {libfsfat-20240501 → libfsfat-20260208}/libclocale/libclocale_support.h +0 -0
  688. {libfsfat-20240501 → libfsfat-20260208}/libclocale/libclocale_unused.h +0 -0
  689. {libfsfat-20240501 → libfsfat-20260208}/libclocale/libclocale_wide_string.c +0 -0
  690. {libfsfat-20240501 → libfsfat-20260208}/libclocale/libclocale_wide_string.h +0 -0
  691. {libfsfat-20240501 → libfsfat-20260208}/libcnotify/Makefile.am +0 -0
  692. {libfsfat-20240501 → libfsfat-20260208}/libcnotify/libcnotify_definitions.h +0 -0
  693. {libfsfat-20240501 → libfsfat-20260208}/libcnotify/libcnotify_extern.h +0 -0
  694. {libfsfat-20240501 → libfsfat-20260208}/libcnotify/libcnotify_libcerror.h +0 -0
  695. {libfsfat-20240501 → libfsfat-20260208}/libcnotify/libcnotify_print.c +0 -0
  696. {libfsfat-20240501 → libfsfat-20260208}/libcnotify/libcnotify_print.h +0 -0
  697. {libfsfat-20240501 → libfsfat-20260208}/libcnotify/libcnotify_stream.c +0 -0
  698. {libfsfat-20240501 → libfsfat-20260208}/libcnotify/libcnotify_stream.h +0 -0
  699. {libfsfat-20240501 → libfsfat-20260208}/libcnotify/libcnotify_support.c +0 -0
  700. {libfsfat-20240501 → libfsfat-20260208}/libcnotify/libcnotify_support.h +0 -0
  701. {libfsfat-20240501 → libfsfat-20260208}/libcnotify/libcnotify_unused.h +0 -0
  702. {libfsfat-20240501 → libfsfat-20260208}/libcnotify/libcnotify_verbose.c +0 -0
  703. {libfsfat-20240501 → libfsfat-20260208}/libcnotify/libcnotify_verbose.h +0 -0
  704. {libfsfat-20240501 → libfsfat-20260208}/libcpath/Makefile.am +0 -0
  705. {libfsfat-20240501 → libfsfat-20260208}/libcsplit/Makefile.am +0 -0
  706. {libfsfat-20240501 → libfsfat-20260208}/libcsplit/libcsplit_definitions.h +0 -0
  707. {libfsfat-20240501 → libfsfat-20260208}/libcsplit/libcsplit_error.c +0 -0
  708. {libfsfat-20240501 → libfsfat-20260208}/libcsplit/libcsplit_error.h +0 -0
  709. {libfsfat-20240501 → libfsfat-20260208}/libcsplit/libcsplit_extern.h +0 -0
  710. {libfsfat-20240501 → libfsfat-20260208}/libcsplit/libcsplit_libcerror.h +0 -0
  711. {libfsfat-20240501 → libfsfat-20260208}/libcsplit/libcsplit_narrow_split_string.c +0 -0
  712. {libfsfat-20240501 → libfsfat-20260208}/libcsplit/libcsplit_narrow_split_string.h +0 -0
  713. {libfsfat-20240501 → libfsfat-20260208}/libcsplit/libcsplit_narrow_string.c +0 -0
  714. {libfsfat-20240501 → libfsfat-20260208}/libcsplit/libcsplit_narrow_string.h +0 -0
  715. {libfsfat-20240501 → libfsfat-20260208}/libcsplit/libcsplit_support.c +0 -0
  716. {libfsfat-20240501 → libfsfat-20260208}/libcsplit/libcsplit_support.h +0 -0
  717. {libfsfat-20240501 → libfsfat-20260208}/libcsplit/libcsplit_types.h +0 -0
  718. {libfsfat-20240501 → libfsfat-20260208}/libcsplit/libcsplit_unused.h +0 -0
  719. {libfsfat-20240501 → libfsfat-20260208}/libcsplit/libcsplit_wide_split_string.c +0 -0
  720. {libfsfat-20240501 → libfsfat-20260208}/libcsplit/libcsplit_wide_split_string.h +0 -0
  721. {libfsfat-20240501 → libfsfat-20260208}/libcsplit/libcsplit_wide_string.c +0 -0
  722. {libfsfat-20240501 → libfsfat-20260208}/libcsplit/libcsplit_wide_string.h +0 -0
  723. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/Makefile.am +0 -0
  724. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_condition.c +0 -0
  725. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_condition.h +0 -0
  726. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_definitions.h +0 -0
  727. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_error.c +0 -0
  728. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_error.h +0 -0
  729. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_extern.h +0 -0
  730. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_libcerror.h +0 -0
  731. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_lock.c +0 -0
  732. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_lock.h +0 -0
  733. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_mutex.c +0 -0
  734. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_mutex.h +0 -0
  735. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_queue.c +0 -0
  736. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_queue.h +0 -0
  737. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_read_write_lock.c +0 -0
  738. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_read_write_lock.h +0 -0
  739. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_repeating_thread.c +0 -0
  740. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_repeating_thread.h +0 -0
  741. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_support.c +0 -0
  742. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_support.h +0 -0
  743. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_thread.c +0 -0
  744. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_thread.h +0 -0
  745. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_thread_attributes.c +0 -0
  746. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_thread_attributes.h +0 -0
  747. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_thread_pool.c +0 -0
  748. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_thread_pool.h +0 -0
  749. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_types.h +0 -0
  750. {libfsfat-20240501 → libfsfat-20260208}/libcthreads/libcthreads_unused.h +0 -0
  751. {libfsfat-20240501 → libfsfat-20260208}/libfcache/Makefile.am +0 -0
  752. {libfsfat-20240501 → libfsfat-20260208}/libfcache/libfcache_cache.c +0 -0
  753. {libfsfat-20240501 → libfsfat-20260208}/libfcache/libfcache_cache.h +0 -0
  754. {libfsfat-20240501 → libfsfat-20260208}/libfcache/libfcache_cache_value.c +0 -0
  755. {libfsfat-20240501 → libfsfat-20260208}/libfcache/libfcache_cache_value.h +0 -0
  756. {libfsfat-20240501 → libfsfat-20260208}/libfcache/libfcache_date_time.c +0 -0
  757. {libfsfat-20240501 → libfsfat-20260208}/libfcache/libfcache_date_time.h +0 -0
  758. {libfsfat-20240501 → libfsfat-20260208}/libfcache/libfcache_definitions.h +0 -0
  759. {libfsfat-20240501 → libfsfat-20260208}/libfcache/libfcache_error.c +0 -0
  760. {libfsfat-20240501 → libfsfat-20260208}/libfcache/libfcache_error.h +0 -0
  761. {libfsfat-20240501 → libfsfat-20260208}/libfcache/libfcache_extern.h +0 -0
  762. {libfsfat-20240501 → libfsfat-20260208}/libfcache/libfcache_libcdata.h +0 -0
  763. {libfsfat-20240501 → libfsfat-20260208}/libfcache/libfcache_libcerror.h +0 -0
  764. {libfsfat-20240501 → libfsfat-20260208}/libfcache/libfcache_support.c +0 -0
  765. {libfsfat-20240501 → libfsfat-20260208}/libfcache/libfcache_support.h +0 -0
  766. {libfsfat-20240501 → libfsfat-20260208}/libfcache/libfcache_types.h +0 -0
  767. {libfsfat-20240501 → libfsfat-20260208}/libfcache/libfcache_unused.h +0 -0
  768. {libfsfat-20240501 → libfsfat-20260208}/libfdata/Makefile.am +0 -0
  769. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_area.c +0 -0
  770. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_area.h +0 -0
  771. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_cache.c +0 -0
  772. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_cache.h +0 -0
  773. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_definitions.h +0 -0
  774. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_error.c +0 -0
  775. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_error.h +0 -0
  776. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_extern.h +0 -0
  777. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_libcdata.h +0 -0
  778. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_libcerror.h +0 -0
  779. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_libcnotify.h +0 -0
  780. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_libfcache.h +0 -0
  781. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_list.c +0 -0
  782. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_list.h +0 -0
  783. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_list_element.c +0 -0
  784. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_list_element.h +0 -0
  785. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_mapped_range.c +0 -0
  786. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_mapped_range.h +0 -0
  787. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_notify.c +0 -0
  788. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_notify.h +0 -0
  789. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_range.c +0 -0
  790. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_range.h +0 -0
  791. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_range_list.c +0 -0
  792. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_range_list.h +0 -0
  793. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_segments_array.c +0 -0
  794. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_segments_array.h +0 -0
  795. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_stream.c +0 -0
  796. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_stream.h +0 -0
  797. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_support.c +0 -0
  798. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_support.h +0 -0
  799. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_types.h +0 -0
  800. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_unused.h +0 -0
  801. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_vector.c +0 -0
  802. {libfsfat-20240501 → libfsfat-20260208}/libfdata/libfdata_vector.h +0 -0
  803. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/Makefile.am +0 -0
  804. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_date_time_values.c +0 -0
  805. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_date_time_values.h +0 -0
  806. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_definitions.h +0 -0
  807. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_error.c +0 -0
  808. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_error.h +0 -0
  809. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_extern.h +0 -0
  810. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_fat_date_time.c +0 -0
  811. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_fat_date_time.h +0 -0
  812. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_filetime.c +0 -0
  813. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_filetime.h +0 -0
  814. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_floatingtime.c +0 -0
  815. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_floatingtime.h +0 -0
  816. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_hfs_time.c +0 -0
  817. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_hfs_time.h +0 -0
  818. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_libcerror.h +0 -0
  819. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_nsf_timedate.c +0 -0
  820. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_nsf_timedate.h +0 -0
  821. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_posix_time.c +0 -0
  822. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_posix_time.h +0 -0
  823. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_support.c +0 -0
  824. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_support.h +0 -0
  825. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_systemtime.c +0 -0
  826. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_systemtime.h +0 -0
  827. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_types.h +0 -0
  828. {libfsfat-20240501 → libfsfat-20260208}/libfdatetime/libfdatetime_unused.h +0 -0
  829. {libfsfat-20240501 → libfsfat-20260208}/libfguid/Makefile.am +0 -0
  830. {libfsfat-20240501 → libfsfat-20260208}/libfguid/libfguid_definitions.h +0 -0
  831. {libfsfat-20240501 → libfsfat-20260208}/libfguid/libfguid_error.c +0 -0
  832. {libfsfat-20240501 → libfsfat-20260208}/libfguid/libfguid_error.h +0 -0
  833. {libfsfat-20240501 → libfsfat-20260208}/libfguid/libfguid_extern.h +0 -0
  834. {libfsfat-20240501 → libfsfat-20260208}/libfguid/libfguid_identifier.c +0 -0
  835. {libfsfat-20240501 → libfsfat-20260208}/libfguid/libfguid_identifier.h +0 -0
  836. {libfsfat-20240501 → libfsfat-20260208}/libfguid/libfguid_libcerror.h +0 -0
  837. {libfsfat-20240501 → libfsfat-20260208}/libfguid/libfguid_support.c +0 -0
  838. {libfsfat-20240501 → libfsfat-20260208}/libfguid/libfguid_support.h +0 -0
  839. {libfsfat-20240501 → libfsfat-20260208}/libfguid/libfguid_types.h +0 -0
  840. {libfsfat-20240501 → libfsfat-20260208}/libfguid/libfguid_unused.h +0 -0
  841. {libfsfat-20240501 → libfsfat-20260208}/libfsfat/Makefile.am +0 -0
  842. {libfsfat-20240501 → libfsfat-20260208}/libfsfat.pc.in +0 -0
  843. {libfsfat-20240501 → libfsfat-20260208}/libfsfat.spec.in +0 -0
  844. {libfsfat-20240501 → libfsfat-20260208}/libhmac/Makefile.am +0 -0
  845. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_byte_stream.h +0 -0
  846. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_definitions.h +0 -0
  847. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_error.c +0 -0
  848. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_error.h +0 -0
  849. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_extern.h +0 -0
  850. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_libcerror.h +0 -0
  851. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_md5.c +0 -0
  852. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_md5.h +0 -0
  853. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_md5_context.c +0 -0
  854. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_md5_context.h +0 -0
  855. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_sha1.c +0 -0
  856. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_sha1.h +0 -0
  857. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_sha1_context.c +0 -0
  858. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_sha1_context.h +0 -0
  859. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_sha224.c +0 -0
  860. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_sha224.h +0 -0
  861. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_sha224_context.c +0 -0
  862. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_sha224_context.h +0 -0
  863. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_sha256.c +0 -0
  864. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_sha256.h +0 -0
  865. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_sha256_context.c +0 -0
  866. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_sha256_context.h +0 -0
  867. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_sha512.c +0 -0
  868. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_sha512.h +0 -0
  869. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_sha512_context.c +0 -0
  870. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_sha512_context.h +0 -0
  871. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_support.c +0 -0
  872. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_support.h +0 -0
  873. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_types.h +0 -0
  874. {libfsfat-20240501 → libfsfat-20260208}/libhmac/libhmac_unused.h +0 -0
  875. {libfsfat-20240501 → libfsfat-20260208}/libuna/Makefile.am +0 -0
  876. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_base16_stream.c +0 -0
  877. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_base16_stream.h +0 -0
  878. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_base32_stream.c +0 -0
  879. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_base32_stream.h +0 -0
  880. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_base64_stream.c +0 -0
  881. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_base64_stream.h +0 -0
  882. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_byte_stream.c +0 -0
  883. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_byte_stream.h +0 -0
  884. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_10.c +0 -0
  885. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_10.h +0 -0
  886. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_13.c +0 -0
  887. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_13.h +0 -0
  888. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_14.c +0 -0
  889. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_14.h +0 -0
  890. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_15.c +0 -0
  891. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_15.h +0 -0
  892. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_16.c +0 -0
  893. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_16.h +0 -0
  894. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_2.c +0 -0
  895. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_2.h +0 -0
  896. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_3.c +0 -0
  897. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_3.h +0 -0
  898. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_4.c +0 -0
  899. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_4.h +0 -0
  900. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_5.c +0 -0
  901. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_5.h +0 -0
  902. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_6.c +0 -0
  903. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_6.h +0 -0
  904. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_7.c +0 -0
  905. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_7.h +0 -0
  906. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_8.c +0 -0
  907. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_8.h +0 -0
  908. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_9.c +0 -0
  909. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_iso_8859_9.h +0 -0
  910. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_koi8_r.c +0 -0
  911. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_koi8_r.h +0 -0
  912. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_koi8_u.c +0 -0
  913. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_koi8_u.h +0 -0
  914. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_arabic.c +0 -0
  915. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_arabic.h +0 -0
  916. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_celtic.c +0 -0
  917. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_celtic.h +0 -0
  918. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_centraleurroman.c +0 -0
  919. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_centraleurroman.h +0 -0
  920. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_croatian.c +0 -0
  921. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_croatian.h +0 -0
  922. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_cyrillic.c +0 -0
  923. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_cyrillic.h +0 -0
  924. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_dingbats.c +0 -0
  925. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_dingbats.h +0 -0
  926. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_farsi.c +0 -0
  927. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_farsi.h +0 -0
  928. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_gaelic.c +0 -0
  929. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_gaelic.h +0 -0
  930. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_greek.c +0 -0
  931. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_greek.h +0 -0
  932. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_icelandic.c +0 -0
  933. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_icelandic.h +0 -0
  934. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_inuit.c +0 -0
  935. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_inuit.h +0 -0
  936. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_roman.c +0 -0
  937. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_roman.h +0 -0
  938. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_romanian.c +0 -0
  939. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_romanian.h +0 -0
  940. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_russian.c +0 -0
  941. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_russian.h +0 -0
  942. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_symbol.c +0 -0
  943. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_symbol.h +0 -0
  944. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_thai.c +0 -0
  945. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_thai.h +0 -0
  946. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_turkish.c +0 -0
  947. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_turkish.h +0 -0
  948. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_ukrainian.c +0 -0
  949. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_mac_ukrainian.h +0 -0
  950. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_1250.c +0 -0
  951. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_1250.h +0 -0
  952. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_1251.c +0 -0
  953. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_1251.h +0 -0
  954. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_1252.c +0 -0
  955. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_1252.h +0 -0
  956. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_1253.c +0 -0
  957. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_1253.h +0 -0
  958. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_1254.c +0 -0
  959. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_1254.h +0 -0
  960. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_1255.c +0 -0
  961. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_1255.h +0 -0
  962. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_1256.c +0 -0
  963. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_1256.h +0 -0
  964. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_1257.c +0 -0
  965. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_1257.h +0 -0
  966. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_1258.c +0 -0
  967. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_1258.h +0 -0
  968. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_874.c +0 -0
  969. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_874.h +0 -0
  970. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_932.c +0 -0
  971. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_932.h +0 -0
  972. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_936.c +0 -0
  973. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_936.h +0 -0
  974. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_949.c +0 -0
  975. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_949.h +0 -0
  976. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_950.c +0 -0
  977. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_codepage_windows_950.h +0 -0
  978. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_definitions.h +0 -0
  979. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_error.c +0 -0
  980. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_error.h +0 -0
  981. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_extern.h +0 -0
  982. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_libcerror.h +0 -0
  983. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_scsu.c +0 -0
  984. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_scsu.h +0 -0
  985. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_support.c +0 -0
  986. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_support.h +0 -0
  987. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_types.h +0 -0
  988. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_unicode_character.c +0 -0
  989. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_unicode_character.h +0 -0
  990. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_unused.h +0 -0
  991. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_url_stream.c +0 -0
  992. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_url_stream.h +0 -0
  993. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_utf16_stream.c +0 -0
  994. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_utf16_stream.h +0 -0
  995. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_utf16_string.c +0 -0
  996. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_utf16_string.h +0 -0
  997. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_utf32_stream.c +0 -0
  998. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_utf32_stream.h +0 -0
  999. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_utf32_string.c +0 -0
  1000. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_utf32_string.h +0 -0
  1001. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_utf7_stream.c +0 -0
  1002. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_utf7_stream.h +0 -0
  1003. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_utf8_stream.c +0 -0
  1004. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_utf8_stream.h +0 -0
  1005. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_utf8_string.c +0 -0
  1006. {libfsfat-20240501 → libfsfat-20260208}/libuna/libuna_utf8_string.h +0 -0
  1007. {libfsfat-20240501 → libfsfat-20260208}/m4/gettext.m4 +0 -0
  1008. {libfsfat-20240501 → libfsfat-20260208}/m4/host-cpu-c-abi.m4 +0 -0
  1009. {libfsfat-20240501 → libfsfat-20260208}/m4/iconv.m4 +0 -0
  1010. {libfsfat-20240501 → libfsfat-20260208}/m4/intlmacosx.m4 +0 -0
  1011. {libfsfat-20240501 → libfsfat-20260208}/m4/lib-ld.m4 +0 -0
  1012. {libfsfat-20240501 → libfsfat-20260208}/m4/lib-link.m4 +0 -0
  1013. {libfsfat-20240501 → libfsfat-20260208}/m4/lib-prefix.m4 +0 -0
  1014. {libfsfat-20240501 → libfsfat-20260208}/m4/libfuse.m4 +0 -0
  1015. {libfsfat-20240501 → libfsfat-20260208}/m4/nls.m4 +0 -0
  1016. {libfsfat-20240501 → libfsfat-20260208}/m4/po.m4 +0 -0
  1017. {libfsfat-20240501 → libfsfat-20260208}/m4/progtest.m4 +0 -0
  1018. {libfsfat-20240501 → libfsfat-20260208}/m4/tests.m4 +0 -0
  1019. {libfsfat-20240501 → libfsfat-20260208}/m4/types.m4 +0 -0
  1020. {libfsfat-20240501 → libfsfat-20260208}/manuals/Makefile.am +0 -0
  1021. {libfsfat-20240501 → libfsfat-20260208}/manuals/fsfatinfo.1 +0 -0
  1022. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/fsfat_test_allocation_table/fsfat_test_allocation_table.vcproj +0 -0
  1023. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/fsfat_test_block_descriptor/fsfat_test_block_descriptor.vcproj +0 -0
  1024. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/fsfat_test_block_tree/fsfat_test_block_tree.vcproj +0 -0
  1025. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/fsfat_test_block_tree_node/fsfat_test_block_tree_node.vcproj +0 -0
  1026. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/fsfat_test_boot_record/fsfat_test_boot_record.vcproj +0 -0
  1027. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/fsfat_test_directory/fsfat_test_directory.vcproj +0 -0
  1028. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/fsfat_test_directory_entry/fsfat_test_directory_entry.vcproj +0 -0
  1029. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/fsfat_test_error/fsfat_test_error.vcproj +0 -0
  1030. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/fsfat_test_extent/fsfat_test_extent.vcproj +0 -0
  1031. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/fsfat_test_file_entry/fsfat_test_file_entry.vcproj +0 -0
  1032. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/fsfat_test_io_handle/fsfat_test_io_handle.vcproj +0 -0
  1033. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/fsfat_test_name/fsfat_test_name.vcproj +0 -0
  1034. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/fsfat_test_notify/fsfat_test_notify.vcproj +0 -0
  1035. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/fsfat_test_support/fsfat_test_support.vcproj +0 -0
  1036. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/fsfat_test_tools_info_handle/fsfat_test_tools_info_handle.vcproj +0 -0
  1037. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/fsfat_test_tools_output/fsfat_test_tools_output.vcproj +0 -0
  1038. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/fsfat_test_tools_signal/fsfat_test_tools_signal.vcproj +0 -0
  1039. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/fsfat_test_volume/fsfat_test_volume.vcproj +0 -0
  1040. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/fsfatinfo/fsfatinfo.vcproj +0 -0
  1041. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/libbfio/libbfio.vcproj +0 -0
  1042. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/libcdata/libcdata.vcproj +0 -0
  1043. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/libcerror/libcerror.vcproj +0 -0
  1044. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/libcfile/libcfile.vcproj +0 -0
  1045. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/libclocale/libclocale.vcproj +0 -0
  1046. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/libcnotify/libcnotify.vcproj +0 -0
  1047. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/libcpath/libcpath.vcproj +0 -0
  1048. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/libcsplit/libcsplit.vcproj +0 -0
  1049. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/libcthreads/libcthreads.vcproj +0 -0
  1050. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/libfcache/libfcache.vcproj +0 -0
  1051. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/libfdata/libfdata.vcproj +0 -0
  1052. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/libfdatetime/libfdatetime.vcproj +0 -0
  1053. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/libfguid/libfguid.vcproj +0 -0
  1054. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/libfsfat/libfsfat.vcproj +0 -0
  1055. {libfsfat-20240501 → libfsfat-20260208}/msvscpp/libuna/libuna.vcproj +0 -0
  1056. {libfsfat-20240501 → libfsfat-20260208}/ossfuzz/Makefile.am +0 -0
  1057. {libfsfat-20240501 → libfsfat-20260208}/po/ChangeLog +0 -0
  1058. {libfsfat-20240501 → libfsfat-20260208}/po/Makefile.in.in +0 -0
  1059. {libfsfat-20240501 → libfsfat-20260208}/po/Makevars +0 -0
  1060. {libfsfat-20240501 → libfsfat-20260208}/po/Makevars.in +0 -0
  1061. {libfsfat-20240501 → libfsfat-20260208}/po/POTFILES.in +0 -0
  1062. {libfsfat-20240501 → libfsfat-20260208}/po/Rules-quot +0 -0
  1063. {libfsfat-20240501 → libfsfat-20260208}/po/boldquot.sed +0 -0
  1064. {libfsfat-20240501 → libfsfat-20260208}/po/en@boldquot.header +0 -0
  1065. {libfsfat-20240501 → libfsfat-20260208}/po/en@quot.header +0 -0
  1066. {libfsfat-20240501 → libfsfat-20260208}/po/insert-header.sin +0 -0
  1067. {libfsfat-20240501 → libfsfat-20260208}/po/quot.sed +0 -0
  1068. {libfsfat-20240501 → libfsfat-20260208}/po/remove-potcdate.sin +0 -0
  1069. {libfsfat-20240501 → libfsfat-20260208}/pyfsfat/Makefile.am +0 -0
  1070. {libfsfat-20240501 → libfsfat-20260208}/pyproject.toml +0 -0
  1071. {libfsfat-20240501 → libfsfat-20260208}/tests/test_fsfatinfo.sh +0 -0
  1072. {libfsfat-20240501 → libfsfat-20260208}/tests/test_library.sh +0 -0
  1073. {libfsfat-20240501 → libfsfat-20260208}/tests/test_manpage.sh +0 -0
  1074. {libfsfat-20240501 → libfsfat-20260208}/tests/test_python_module.sh +0 -0
  1075. {libfsfat-20240501 → libfsfat-20260208}/tests/test_runner.sh +0 -0
@@ -0,0 +1,4 @@
1
+ Acknowledgements: libfsfat
2
+
3
+ Copyright (C) 2021-2026, Joachim Metz <joachim.metz@gmail.com>
4
+
@@ -0,0 +1,380 @@
1
+ Installation Instructions
2
+ *************************
3
+
4
+ Basic Installation
5
+ ==================
6
+
7
+ The following shell commands:
8
+
9
+ test -f configure || ./bootstrap
10
+ ./configure
11
+ make
12
+ make install
13
+
14
+ should configure, build, and install this package. The first line,
15
+ which bootstraps, is intended for developers; when building from
16
+ distribution tarballs it does nothing and can be skipped. A package
17
+ might name the bootstrapping script differently; if the name is
18
+ ‘autogen.sh’, for example, the first line should say ‘./autogen.sh’
19
+ instead of ‘./bootstrap’.
20
+
21
+ The following more-detailed instructions are generic; see the
22
+ ‘README’ file for instructions specific to this package. Some packages
23
+ provide this ‘INSTALL’ file but do not implement all of the features
24
+ documented below. The lack of an optional feature in a given package is
25
+ not necessarily a bug. More recommendations for GNU packages can be
26
+ found in the GNU Coding Standards.
27
+
28
+ Many packages have scripts meant for developers instead of ordinary
29
+ builders, as they may use developer tools that are less commonly
30
+ installed, or they may access the network, which has privacy
31
+ implications. These scripts attempt to bootstrap by building the
32
+ ‘configure’ script and related files, possibly using developer tools or
33
+ the network. Because the output of bootstrapping is system-independent,
34
+ it is normally run by a package developer so that its output can be put
35
+ into the distribution tarball and ordinary builders and users need not
36
+ bootstrap. Some packages have commands like ‘./autopull.sh’ and
37
+ ‘./autogen.sh’ that you can run instead of ‘./bootstrap’, for more
38
+ fine-grained control over bootstrapping.
39
+
40
+ The ‘configure’ script attempts to guess correct values for various
41
+ system-dependent variables used during compilation. It uses those
42
+ values to create a ‘Makefile’ in each directory of the package. It may
43
+ also create one or more ‘.h’ files containing system-dependent
44
+ definitions. Finally, it creates a script ‘config.status’ that you can
45
+ run in the future to recreate the current configuration, and a file
46
+ ‘config.log’ containing output useful for debugging ‘configure’.
47
+
48
+ It can also use an optional file (typically called ‘config.cache’ and
49
+ enabled with ‘--cache-file=config.cache’ or simply ‘-C’) that saves the
50
+ results of its tests to speed up reconfiguring. Caching is disabled by
51
+ default to prevent problems with accidental use of stale cache files.
52
+
53
+ If you need to do unusual things to compile the package, please try
54
+ to figure out how ‘configure’ could check whether to do them, and mail
55
+ diffs or instructions to the address given in the ‘README’ so they can
56
+ be considered for the next release. If you are using the cache, and at
57
+ some point ‘config.cache’ contains results you don’t want to keep, you
58
+ may remove or edit it.
59
+
60
+ The ‘autoconf’ program generates ‘configure’ from the file
61
+ ‘configure.ac’. Normally you should edit ‘configure.ac’ instead of
62
+ editing ‘configure’ directly.
63
+
64
+ The simplest way to compile this package is:
65
+
66
+ 1. ‘cd’ to the directory containing the package’s source code.
67
+
68
+ 2. If this is a developer checkout and file ‘configure’ does not yet
69
+ exist, run the bootstrapping script (typically ‘./bootstrap’ or
70
+ ‘./autogen.sh’) to bootstrap and create the file. You may need
71
+ special developer tools and network access to bootstrap, and the
72
+ network access may have privacy implications.
73
+
74
+ 3. Type ‘./configure’ to configure the package for your system. This
75
+ might take a while. While running, ‘configure’ prints messages
76
+ telling which features it is checking for.
77
+
78
+ 4. Type ‘make’ to compile the package.
79
+
80
+ 5. Optionally, type ‘make check’ to run any self-tests that come with
81
+ the package, generally using the just-built uninstalled binaries.
82
+
83
+ 6. Type ‘make install’ to install the programs and any data files and
84
+ documentation. When installing into a prefix owned by root, it is
85
+ recommended that the package be configured and built as a regular
86
+ user, and only the ‘make install’ phase executed with root
87
+ privileges.
88
+
89
+ 7. Optionally, type ‘make installcheck’ to repeat any self-tests, but
90
+ this time using the binaries in their final installed location.
91
+ This target does not install anything. Running this target as a
92
+ regular user, particularly if the prior ‘make install’ required
93
+ root privileges, verifies that the installation completed
94
+ correctly.
95
+
96
+ 8. You can remove the program binaries and object files from the
97
+ source code directory by typing ‘make clean’. To also remove the
98
+ files that ‘configure’ created (so you can compile the package for
99
+ a different kind of computer), type ‘make distclean’. There is
100
+ also a ‘make maintainer-clean’ target, but that is intended mainly
101
+ for the package’s developers. If you use it, you may have to
102
+ bootstrap again.
103
+
104
+ 9. If the package follows the GNU Coding Standards, you can type ‘make
105
+ uninstall’ to remove the installed files.
106
+
107
+ Installation Prerequisites
108
+ ==========================
109
+
110
+ Installation requires a POSIX-like environment with a shell and at
111
+ least the following standard utilities:
112
+
113
+ awk cat cp diff echo expr false ls mkdir mv printf pwd rm rmdir sed
114
+ sort test tr
115
+
116
+ This package’s installation may need other standard utilities such as
117
+ ‘grep’, ‘make’, ‘sleep’ and ‘touch’, along with compilers like ‘gcc’.
118
+
119
+ Compilers and Options
120
+ =====================
121
+
122
+ Some systems require unusual options for compilation or linking that
123
+ the ‘configure’ script does not know about. Run ‘./configure --help’
124
+ for details on some of the pertinent environment variables.
125
+
126
+ You can give ‘configure’ initial values for configuration parameters
127
+ by setting variables in the command line or in the environment. Here is
128
+ an example:
129
+
130
+ ./configure CC=gcc CFLAGS=-g LIBS=-lposix
131
+
132
+ See “Defining Variables” for more details.
133
+
134
+ Compiling For Multiple Architectures
135
+ ====================================
136
+
137
+ You can compile the package for more than one kind of computer at the
138
+ same time, by placing the object files for each system in their own
139
+ directory. To do this, you can use GNU ‘make’. ‘cd’ to the directory
140
+ where you want the object files and executables to go and run the
141
+ ‘configure’ script. ‘configure’ automatically checks for the source
142
+ code in the directory that ‘configure’ is in and in ‘..’. This is known
143
+ as a “VPATH” build.
144
+
145
+ With a non-GNU ‘make’, it is safer to compile the package for one
146
+ system at a time in the source code directory. After you have installed
147
+ the package for one system, use ‘make distclean’ before reconfiguring
148
+ for another system.
149
+
150
+ Some platforms, notably macOS, support “fat” or “universal” binaries,
151
+ where a single binary can execute on different architectures. On these
152
+ platforms you can configure and compile just once, with options specific
153
+ to that platform.
154
+
155
+ Installation Names
156
+ ==================
157
+
158
+ By default, ‘make install’ installs the package’s commands under
159
+ ‘/usr/local/bin’, include files under ‘/usr/local/include’, etc. You
160
+ can specify an installation prefix other than ‘/usr/local’ by giving
161
+ ‘configure’ the option ‘--prefix=PREFIX’, where PREFIX must be an
162
+ absolute file name.
163
+
164
+ You can specify separate installation prefixes for
165
+ architecture-specific files and architecture-independent files. If you
166
+ pass the option ‘--exec-prefix=PREFIX’ to ‘configure’, the package uses
167
+ PREFIX as the prefix for installing programs and libraries.
168
+ Documentation and other data files still use the regular prefix.
169
+
170
+ In addition, if you use an unusual directory layout you can give
171
+ options like ‘--bindir=DIR’ to specify different values for particular
172
+ kinds of files. Run ‘configure --help’ for a list of the directories
173
+ you can set and what kinds of files go in them. In general, the default
174
+ for these options is expressed in terms of ‘${prefix}’, so that
175
+ specifying just ‘--prefix’ will affect all of the other directory
176
+ specifications that were not explicitly provided.
177
+
178
+ The most portable way to affect installation locations is to pass the
179
+ correct locations to ‘configure’; however, many packages provide one or
180
+ both of the following shortcuts of passing variable assignments to the
181
+ ‘make install’ command line to change installation locations without
182
+ having to reconfigure or recompile.
183
+
184
+ The first method involves providing an override variable for each
185
+ affected directory. For example, ‘make install
186
+ prefix=/alternate/directory’ will choose an alternate location for all
187
+ directory configuration variables that were expressed in terms of
188
+ ‘${prefix}’. Any directories that were specified during ‘configure’,
189
+ but not in terms of ‘${prefix}’, must each be overridden at install time
190
+ for the entire installation to be relocated. The approach of makefile
191
+ variable overrides for each directory variable is required by the GNU
192
+ Coding Standards, and ideally causes no recompilation. However, some
193
+ platforms have known limitations with the semantics of shared libraries
194
+ that end up requiring recompilation when using this method, particularly
195
+ noticeable in packages that use GNU Libtool.
196
+
197
+ The second method involves providing the ‘DESTDIR’ variable. For
198
+ example, ‘make install DESTDIR=/alternate/directory’ will prepend
199
+ ‘/alternate/directory’ before all installation names. The approach of
200
+ ‘DESTDIR’ overrides is not required by the GNU Coding Standards, and
201
+ does not work on platforms that have drive letters. On the other hand,
202
+ it does better at avoiding recompilation issues, and works well even
203
+ when some directory options were not specified in terms of ‘${prefix}’
204
+ at ‘configure’ time.
205
+
206
+ Optional Features
207
+ =================
208
+
209
+ If the package supports it, you can cause programs to be installed
210
+ with an extra prefix or suffix on their names by giving ‘configure’ the
211
+ option ‘--program-prefix=PREFIX’ or ‘--program-suffix=SUFFIX’.
212
+
213
+ Some packages pay attention to ‘--enable-FEATURE’ and
214
+ ‘--disable-FEATURE’ options to ‘configure’, where FEATURE indicates an
215
+ optional part of the package. They may also pay attention to
216
+ ‘--with-PACKAGE’ and ‘--without-PACKAGE’ options, where PACKAGE is
217
+ something like ‘gnu-ld’. ‘./configure --help’ should mention the
218
+ ‘--enable-...’ and ‘--with-...’ options that the package recognizes.
219
+
220
+ Some packages offer the ability to configure how verbose the
221
+ execution of ‘make’ will be. For these packages, running ‘./configure
222
+ --enable-silent-rules’ sets the default to minimal output, which can be
223
+ overridden with ‘make V=1’; while running ‘./configure
224
+ --disable-silent-rules’ sets the default to verbose, which can be
225
+ overridden with ‘make V=0’.
226
+
227
+ Specifying a System Type
228
+ ========================
229
+
230
+ By default ‘configure’ builds for the current system. To create
231
+ binaries that can run on a different system type, specify a
232
+ ‘--host=TYPE’ option along with compiler variables that specify how to
233
+ generate object code for TYPE. For example, to create binaries intended
234
+ to run on a 64-bit ARM processor:
235
+
236
+ ./configure --host=aarch64-linux-gnu \
237
+ CC=aarch64-linux-gnu-gcc \
238
+ CXX=aarch64-linux-gnu-g++
239
+
240
+ If done on a machine that can execute these binaries (e.g., via
241
+ ‘qemu-aarch64’, ‘$QEMU_LD_PREFIX’, and Linux’s ‘binfmt_misc’
242
+ capability), the build behaves like a native build. Otherwise it is a
243
+ cross-build: ‘configure’ will make cross-compilation guesses instead of
244
+ running test programs, and ‘make check’ will not work.
245
+
246
+ A system type can either be a short name like ‘mingw64’, or a
247
+ canonical name like ‘x86_64-pc-linux-gnu’. Canonical names have the
248
+ form CPU-COMPANY-SYSTEM where SYSTEM is either OS or KERNEL-OS. To
249
+ canonicalize and validate a system type, you can run the command
250
+ ‘config.sub’, which is often squirreled away in a subdirectory like
251
+ ‘build-aux’. For example:
252
+
253
+ $ build-aux/config.sub arm64-linux
254
+ aarch64-unknown-linux-gnu
255
+ $ build-aux/config.sub riscv-lnx
256
+ Invalid configuration 'riscv-lnx': OS 'lnx' not recognized
257
+
258
+ You can look at the ‘config.sub’ file to see which types are recognized.
259
+ If the file is absent, this package does not need the system type.
260
+
261
+ If ‘configure’ fails with the diagnostic “cannot guess build type”.
262
+ ‘config.sub’ did not recognize your system’s type. In this case, first
263
+ fetch the newest versions of these files from the GNU config package
264
+ (https://savannah.gnu.org/projects/config). If that fixes things,
265
+ please report it to the maintainers of the package containing
266
+ ‘configure’. Otherwise, you can try the configure option ‘--build=TYPE’
267
+ where TYPE comes close to your system type; also, please report the
268
+ problem to <config-patches@gnu.org>.
269
+
270
+ For more details about configuring system types, see the Autoconf
271
+ documentation.
272
+
273
+ Sharing Defaults
274
+ ================
275
+
276
+ If you want to set default values for ‘configure’ scripts to share,
277
+ you can create a site shell script called ‘config.site’ that gives
278
+ default values for variables like ‘CC’, ‘cache_file’, and ‘prefix’.
279
+ ‘configure’ looks for ‘PREFIX/share/config.site’ if it exists, then
280
+ ‘PREFIX/etc/config.site’ if it exists. Or, you can set the
281
+ ‘CONFIG_SITE’ environment variable to the location of the site script.
282
+ A warning: not all ‘configure’ scripts look for a site script.
283
+
284
+ Defining Variables
285
+ ==================
286
+
287
+ Variables not defined in a site shell script can be set in the
288
+ environment passed to ‘configure’. However, some packages may run
289
+ configure again during the build, and the customized values of these
290
+ variables may be lost. In order to avoid this problem, you should set
291
+ them in the ‘configure’ command line, using ‘VAR=value’. For example:
292
+
293
+ ./configure CC=/usr/local2/bin/gcc
294
+
295
+ causes the specified ‘gcc’ to be used as the C compiler (unless it is
296
+ overridden in the site shell script).
297
+
298
+ Unfortunately, this technique does not work for ‘CONFIG_SHELL’ due to an
299
+ Autoconf limitation. Until the limitation is lifted, you can use this
300
+ workaround:
301
+
302
+ CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash
303
+
304
+ ‘configure’ Invocation
305
+ ======================
306
+
307
+ ‘configure’ recognizes the following options to control how it
308
+ operates.
309
+
310
+ ‘--help’
311
+ ‘-h’
312
+ Print a summary of all of the options to ‘configure’, and exit.
313
+
314
+ ‘--help=short’
315
+ ‘--help=recursive’
316
+ Print a summary of the options unique to this package’s
317
+ ‘configure’, and exit. The ‘short’ variant lists options used only
318
+ in the top level, while the ‘recursive’ variant lists options also
319
+ present in any nested packages.
320
+
321
+ ‘--version’
322
+ ‘-V’
323
+ Print the version of Autoconf used to generate the ‘configure’
324
+ script, and exit.
325
+
326
+ ‘--cache-file=FILE’
327
+ Enable the cache: use and save the results of the tests in FILE,
328
+ traditionally ‘config.cache’. FILE defaults to ‘/dev/null’ to
329
+ disable caching.
330
+
331
+ ‘--config-cache’
332
+ ‘-C’
333
+ Alias for ‘--cache-file=config.cache’.
334
+
335
+ ‘--srcdir=DIR’
336
+ Look for the package’s source code in directory DIR. Usually
337
+ ‘configure’ can determine that directory automatically.
338
+
339
+ ‘--prefix=DIR’
340
+ Use DIR as the installation prefix. See “Installation Names” for
341
+ more details, including other options available for fine-tuning the
342
+ installation locations.
343
+
344
+ ‘--host=TYPE’
345
+ Build binaries for system TYPE. See “Specifying a System Type”.
346
+
347
+ ‘--enable-FEATURE’
348
+ ‘--disable-FEATURE’
349
+ Enable or disable the optional FEATURE. See “Optional Features”.
350
+
351
+ ‘--with-PACKAGE’
352
+ ‘--without-PACKAGE’
353
+ Use or omit PACKAGE when building. See “Optional Features”.
354
+
355
+ ‘--quiet’
356
+ ‘--silent’
357
+ ‘-q’
358
+ Do not print messages saying which checks are being made. To
359
+ suppress all normal output, redirect it to ‘/dev/null’ (any error
360
+ messages will still be shown).
361
+
362
+ ‘--no-create’
363
+ ‘-n’
364
+ Run the configure checks, but stop before creating any output
365
+ files.
366
+
367
+ ‘configure’ also recognizes several environment variables, and accepts
368
+ some other, less widely useful, options. Run ‘configure --help’ for
369
+ more details.
370
+
371
+ Copyright notice
372
+ ================
373
+
374
+ Copyright © 1994–1996, 1999–2002, 2004–2017, 2020–2025 Free Software
375
+ Foundation, Inc.
376
+
377
+ Copying and distribution of this file, with or without modification,
378
+ are permitted in any medium without royalty provided the copyright
379
+ notice and this notice are preserved. This file is offered as-is,
380
+ without warranty of any kind.