libexe-python 20240420__tar.gz → 20260705__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 (1352) hide show
  1. libexe_python-20260705/AUTHORS +4 -0
  2. {libexe-20240420 → libexe_python-20260705}/INSTALL +0 -0
  3. libexe_python-20260705/Makefile.am +104 -0
  4. libexe_python-20260705/Makefile.in +1198 -0
  5. libexe_python-20260705/PKG-INFO +36 -0
  6. libexe_python-20260705/README +19 -0
  7. libexe_python-20260705/_build.py +275 -0
  8. libexe_python-20260705/acinclude.m4 +36 -0
  9. libexe_python-20260705/aclocal.m4 +1546 -0
  10. libexe_python-20260705/common/Makefile.in +765 -0
  11. libexe_python-20260705/common/byte_stream.h +312 -0
  12. libexe_python-20260705/common/common.h +43 -0
  13. libexe_python-20260705/common/config.h +593 -0
  14. libexe_python-20260705/common/config.h.in +592 -0
  15. libexe_python-20260705/common/config_borlandc.h +26 -0
  16. libexe_python-20260705/common/config_msc.h +34 -0
  17. libexe_python-20260705/common/config_winapi.h +97 -0
  18. libexe_python-20260705/common/file_stream.h +151 -0
  19. libexe_python-20260705/common/memory.h +129 -0
  20. libexe_python-20260705/common/narrow_string.h +187 -0
  21. libexe_python-20260705/common/system_string.h +154 -0
  22. libexe_python-20260705/common/types.h +392 -0
  23. libexe_python-20260705/common/types.h.in +392 -0
  24. libexe_python-20260705/common/wide_string.h +175 -0
  25. libexe_python-20260705/config.guess +1754 -0
  26. libexe_python-20260705/config.sub +1890 -0
  27. libexe_python-20260705/configure +58979 -0
  28. libexe_python-20260705/configure.ac +240 -0
  29. libexe_python-20260705/dpkg/changelog +5 -0
  30. libexe_python-20260705/dpkg/compat +1 -0
  31. libexe_python-20260705/dpkg/control +65 -0
  32. libexe_python-20260705/dpkg/copyright +25 -0
  33. libexe_python-20260705/dpkg/rules +31 -0
  34. libexe_python-20260705/exetools/Makefile.am +57 -0
  35. libexe_python-20260705/exetools/Makefile.in +922 -0
  36. libexe_python-20260705/exetools/exeinfo.c +349 -0
  37. libexe_python-20260705/exetools/exetools_getopt.c +572 -0
  38. libexe_python-20260705/exetools/exetools_getopt.h +106 -0
  39. libexe_python-20260705/exetools/exetools_i18n.h +48 -0
  40. libexe_python-20260705/exetools/exetools_libbfio.h +58 -0
  41. libexe_python-20260705/exetools/exetools_libcerror.h +50 -0
  42. libexe_python-20260705/exetools/exetools_libclocale.h +50 -0
  43. libexe_python-20260705/exetools/exetools_libcnotify.h +50 -0
  44. libexe_python-20260705/exetools/exetools_libexe.h +30 -0
  45. libexe_python-20260705/exetools/exetools_libfdatetime.h +56 -0
  46. libexe_python-20260705/exetools/exetools_libuna.h +60 -0
  47. libexe_python-20260705/exetools/exetools_output.c +172 -0
  48. libexe_python-20260705/exetools/exetools_output.h +55 -0
  49. libexe_python-20260705/exetools/exetools_signal.c +262 -0
  50. libexe_python-20260705/exetools/exetools_signal.h +72 -0
  51. libexe_python-20260705/exetools/exetools_unused.h +50 -0
  52. libexe_python-20260705/exetools/info_handle.c +550 -0
  53. libexe_python-20260705/exetools/info_handle.h +92 -0
  54. libexe_python-20260705/include/Makefile.in +827 -0
  55. libexe_python-20260705/include/libexe/codepage.h +122 -0
  56. libexe_python-20260705/include/libexe/definitions.h +108 -0
  57. libexe_python-20260705/include/libexe/definitions.h.in +108 -0
  58. libexe_python-20260705/include/libexe/error.h +291 -0
  59. libexe_python-20260705/include/libexe/extern.h +47 -0
  60. libexe_python-20260705/include/libexe/features.h +50 -0
  61. libexe_python-20260705/include/libexe/features.h.in +50 -0
  62. libexe_python-20260705/include/libexe/types.h +212 -0
  63. libexe_python-20260705/include/libexe/types.h.in +212 -0
  64. libexe_python-20260705/include/libexe.h +489 -0
  65. libexe_python-20260705/include/libexe.h.in +489 -0
  66. libexe_python-20260705/libbfio/Makefile.in +928 -0
  67. libexe_python-20260705/libbfio/libbfio_codepage.h +90 -0
  68. libexe_python-20260705/libbfio/libbfio_definitions.h +89 -0
  69. libexe_python-20260705/libbfio/libbfio_error.c +111 -0
  70. libexe_python-20260705/libbfio/libbfio_error.h +74 -0
  71. libexe_python-20260705/libbfio/libbfio_extern.h +53 -0
  72. libexe_python-20260705/libbfio/libbfio_file.c +444 -0
  73. libexe_python-20260705/libbfio/libbfio_file.h +90 -0
  74. libexe_python-20260705/libbfio/libbfio_file_io_handle.c +1198 -0
  75. libexe_python-20260705/libbfio/libbfio_file_io_handle.h +152 -0
  76. libexe_python-20260705/libbfio/libbfio_file_pool.c +494 -0
  77. libexe_python-20260705/libbfio/libbfio_file_pool.h +81 -0
  78. libexe_python-20260705/libbfio/libbfio_file_range.c +468 -0
  79. libexe_python-20260705/libbfio/libbfio_file_range.h +104 -0
  80. libexe_python-20260705/libbfio/libbfio_file_range_io_handle.c +1158 -0
  81. libexe_python-20260705/libbfio/libbfio_file_range_io_handle.h +160 -0
  82. libexe_python-20260705/libbfio/libbfio_handle.c +2708 -0
  83. libexe_python-20260705/libbfio/libbfio_handle.h +363 -0
  84. libexe_python-20260705/libbfio/libbfio_libcdata.h +54 -0
  85. libexe_python-20260705/libbfio/libbfio_libcerror.h +50 -0
  86. libexe_python-20260705/libbfio/libbfio_libcfile.h +50 -0
  87. libexe_python-20260705/libbfio/libbfio_libclocale.h +50 -0
  88. libexe_python-20260705/libbfio/libbfio_libcpath.h +48 -0
  89. libexe_python-20260705/libbfio/libbfio_libcthreads.h +64 -0
  90. libexe_python-20260705/libbfio/libbfio_libuna.h +60 -0
  91. libexe_python-20260705/libbfio/libbfio_memory_range.c +205 -0
  92. libexe_python-20260705/libbfio/libbfio_memory_range.h +60 -0
  93. libexe_python-20260705/libbfio/libbfio_memory_range_io_handle.c +871 -0
  94. libexe_python-20260705/libbfio/libbfio_memory_range_io_handle.h +129 -0
  95. libexe_python-20260705/libbfio/libbfio_pool.c +3523 -0
  96. libexe_python-20260705/libbfio/libbfio_pool.h +275 -0
  97. libexe_python-20260705/libbfio/libbfio_support.c +93 -0
  98. libexe_python-20260705/libbfio/libbfio_support.h +58 -0
  99. libexe_python-20260705/libbfio/libbfio_system_string.c +1017 -0
  100. libexe_python-20260705/libbfio/libbfio_system_string.h +95 -0
  101. libexe_python-20260705/libbfio/libbfio_types.h +49 -0
  102. libexe_python-20260705/libbfio/libbfio_unused.h +44 -0
  103. libexe_python-20260705/libcdata/Makefile.in +907 -0
  104. libexe_python-20260705/libcdata/libcdata_array.c +2015 -0
  105. libexe_python-20260705/libcdata/libcdata_array.h +200 -0
  106. libexe_python-20260705/libcdata/libcdata_btree.c +964 -0
  107. libexe_python-20260705/libcdata/libcdata_btree.h +141 -0
  108. libexe_python-20260705/libcdata/libcdata_btree_node.c +1607 -0
  109. libexe_python-20260705/libcdata/libcdata_btree_node.h +101 -0
  110. libexe_python-20260705/libcdata/libcdata_btree_values_list.c +217 -0
  111. libexe_python-20260705/libcdata/libcdata_btree_values_list.h +55 -0
  112. libexe_python-20260705/libcdata/libcdata_definitions.h +81 -0
  113. libexe_python-20260705/libcdata/libcdata_error.c +111 -0
  114. libexe_python-20260705/libcdata/libcdata_error.h +74 -0
  115. libexe_python-20260705/libcdata/libcdata_extern.h +53 -0
  116. libexe_python-20260705/libcdata/libcdata_libcerror.h +50 -0
  117. libexe_python-20260705/libcdata/libcdata_libcthreads.h +64 -0
  118. libexe_python-20260705/libcdata/libcdata_list.c +2906 -0
  119. libexe_python-20260705/libcdata/libcdata_list.h +235 -0
  120. libexe_python-20260705/libcdata/libcdata_list_element.c +926 -0
  121. libexe_python-20260705/libcdata/libcdata_list_element.h +142 -0
  122. libexe_python-20260705/libcdata/libcdata_range_list.c +4922 -0
  123. libexe_python-20260705/libcdata/libcdata_range_list.h +382 -0
  124. libexe_python-20260705/libcdata/libcdata_range_list_value.c +429 -0
  125. libexe_python-20260705/libcdata/libcdata_range_list_value.h +100 -0
  126. libexe_python-20260705/libcdata/libcdata_support.c +39 -0
  127. libexe_python-20260705/libcdata/libcdata_support.h +47 -0
  128. libexe_python-20260705/libcdata/libcdata_tree_node.c +4271 -0
  129. libexe_python-20260705/libcdata/libcdata_tree_node.h +308 -0
  130. libexe_python-20260705/libcdata/libcdata_types.h +57 -0
  131. libexe_python-20260705/libcdata/libcdata_unused.h +44 -0
  132. libexe_python-20260705/libcerror/Makefile.in +849 -0
  133. libexe_python-20260705/libcerror/libcerror_definitions.h +326 -0
  134. libexe_python-20260705/libcerror/libcerror_error.c +827 -0
  135. libexe_python-20260705/libcerror/libcerror_error.h +125 -0
  136. libexe_python-20260705/libcerror/libcerror_extern.h +53 -0
  137. libexe_python-20260705/libcerror/libcerror_support.c +39 -0
  138. libexe_python-20260705/libcerror/libcerror_support.h +47 -0
  139. libexe_python-20260705/libcerror/libcerror_system.c +569 -0
  140. libexe_python-20260705/libcerror/libcerror_system.h +78 -0
  141. libexe_python-20260705/libcerror/libcerror_types.h +51 -0
  142. libexe_python-20260705/libcerror/libcerror_unused.h +44 -0
  143. libexe_python-20260705/libcfile/Makefile.in +876 -0
  144. libexe_python-20260705/libcfile/libcfile_definitions.h +101 -0
  145. libexe_python-20260705/libcfile/libcfile_error.c +111 -0
  146. libexe_python-20260705/libcfile/libcfile_error.h +74 -0
  147. libexe_python-20260705/libcfile/libcfile_extern.h +53 -0
  148. libexe_python-20260705/libcfile/libcfile_file.c +5022 -0
  149. libexe_python-20260705/libcfile/libcfile_file.h +277 -0
  150. libexe_python-20260705/libcfile/libcfile_libcerror.h +50 -0
  151. libexe_python-20260705/libcfile/libcfile_libclocale.h +50 -0
  152. libexe_python-20260705/libcfile/libcfile_libcnotify.h +50 -0
  153. libexe_python-20260705/libcfile/libcfile_libuna.h +60 -0
  154. libexe_python-20260705/libcfile/libcfile_notify.c +120 -0
  155. libexe_python-20260705/libcfile/libcfile_notify.h +63 -0
  156. libexe_python-20260705/libcfile/libcfile_support.c +1171 -0
  157. libexe_python-20260705/libcfile/libcfile_support.h +98 -0
  158. libexe_python-20260705/libcfile/libcfile_system_string.c +1017 -0
  159. libexe_python-20260705/libcfile/libcfile_system_string.h +95 -0
  160. libexe_python-20260705/libcfile/libcfile_types.h +47 -0
  161. libexe_python-20260705/libcfile/libcfile_unused.h +44 -0
  162. libexe_python-20260705/libcfile/libcfile_winapi.c +815 -0
  163. libexe_python-20260705/libcfile/libcfile_winapi.h +122 -0
  164. libexe_python-20260705/libclocale/Makefile.in +859 -0
  165. libexe_python-20260705/libclocale/libclocale_codepage.c +950 -0
  166. libexe_python-20260705/libclocale/libclocale_codepage.h +73 -0
  167. libexe_python-20260705/libclocale/libclocale_definitions.h +106 -0
  168. libexe_python-20260705/libclocale/libclocale_extern.h +53 -0
  169. libexe_python-20260705/libclocale/libclocale_libcerror.h +50 -0
  170. libexe_python-20260705/libclocale/libclocale_locale.c +494 -0
  171. libexe_python-20260705/libclocale/libclocale_locale.h +66 -0
  172. libexe_python-20260705/libclocale/libclocale_support.c +130 -0
  173. libexe_python-20260705/libclocale/libclocale_support.h +55 -0
  174. libexe_python-20260705/libclocale/libclocale_unused.h +44 -0
  175. libexe_python-20260705/libclocale/libclocale_wide_string.c +69 -0
  176. libexe_python-20260705/libclocale/libclocale_wide_string.h +54 -0
  177. libexe_python-20260705/libcnotify/Makefile.in +857 -0
  178. libexe_python-20260705/libcnotify/libcnotify_definitions.h +54 -0
  179. libexe_python-20260705/libcnotify/libcnotify_extern.h +53 -0
  180. libexe_python-20260705/libcnotify/libcnotify_libcerror.h +50 -0
  181. libexe_python-20260705/libcnotify/libcnotify_print.c +386 -0
  182. libexe_python-20260705/libcnotify/libcnotify_print.h +68 -0
  183. libexe_python-20260705/libcnotify/libcnotify_stream.c +182 -0
  184. libexe_python-20260705/libcnotify/libcnotify_stream.h +59 -0
  185. libexe_python-20260705/libcnotify/libcnotify_support.c +39 -0
  186. libexe_python-20260705/libcnotify/libcnotify_support.h +49 -0
  187. libexe_python-20260705/libcnotify/libcnotify_unused.h +44 -0
  188. libexe_python-20260705/libcnotify/libcnotify_verbose.c +38 -0
  189. libexe_python-20260705/libcnotify/libcnotify_verbose.h +46 -0
  190. libexe_python-20260705/libcpath/Makefile.in +861 -0
  191. libexe_python-20260705/libcpath/libcpath_definitions.h +79 -0
  192. libexe_python-20260705/libcpath/libcpath_error.c +111 -0
  193. libexe_python-20260705/libcpath/libcpath_error.h +74 -0
  194. libexe_python-20260705/libcpath/libcpath_extern.h +53 -0
  195. libexe_python-20260705/libcpath/libcpath_libcerror.h +50 -0
  196. libexe_python-20260705/libcpath/libcpath_libclocale.h +50 -0
  197. libexe_python-20260705/libcpath/libcpath_libcsplit.h +52 -0
  198. libexe_python-20260705/libcpath/libcpath_libuna.h +60 -0
  199. libexe_python-20260705/libcpath/libcpath_path.c +7508 -0
  200. libexe_python-20260705/libcpath/libcpath_path.h +293 -0
  201. libexe_python-20260705/libcpath/libcpath_support.c +93 -0
  202. libexe_python-20260705/libcpath/libcpath_support.h +58 -0
  203. libexe_python-20260705/libcpath/libcpath_system_string.c +1017 -0
  204. libexe_python-20260705/libcpath/libcpath_system_string.h +95 -0
  205. libexe_python-20260705/libcpath/libcpath_unused.h +44 -0
  206. libexe_python-20260705/libcsplit/Makefile.in +874 -0
  207. libexe_python-20260705/libcsplit/libcsplit_definitions.h +47 -0
  208. libexe_python-20260705/libcsplit/libcsplit_error.c +111 -0
  209. libexe_python-20260705/libcsplit/libcsplit_error.h +74 -0
  210. libexe_python-20260705/libcsplit/libcsplit_extern.h +53 -0
  211. libexe_python-20260705/libcsplit/libcsplit_libcerror.h +50 -0
  212. libexe_python-20260705/libcsplit/libcsplit_narrow_split_string.c +547 -0
  213. libexe_python-20260705/libcsplit/libcsplit_narrow_split_string.h +107 -0
  214. libexe_python-20260705/libcsplit/libcsplit_narrow_string.c +288 -0
  215. libexe_python-20260705/libcsplit/libcsplit_narrow_string.h +49 -0
  216. libexe_python-20260705/libcsplit/libcsplit_support.c +39 -0
  217. libexe_python-20260705/libcsplit/libcsplit_support.h +47 -0
  218. libexe_python-20260705/libcsplit/libcsplit_types.h +49 -0
  219. libexe_python-20260705/libcsplit/libcsplit_unused.h +44 -0
  220. libexe_python-20260705/libcsplit/libcsplit_wide_split_string.c +551 -0
  221. libexe_python-20260705/libcsplit/libcsplit_wide_split_string.h +111 -0
  222. libexe_python-20260705/libcsplit/libcsplit_wide_string.c +292 -0
  223. libexe_python-20260705/libcsplit/libcsplit_wide_string.h +53 -0
  224. libexe_python-20260705/libcthreads/Makefile.in +909 -0
  225. libexe_python-20260705/libcthreads/libcthreads_condition.c +735 -0
  226. libexe_python-20260705/libcthreads/libcthreads_condition.h +120 -0
  227. libexe_python-20260705/libcthreads/libcthreads_definitions.h +84 -0
  228. libexe_python-20260705/libcthreads/libcthreads_error.c +111 -0
  229. libexe_python-20260705/libcthreads/libcthreads_error.h +74 -0
  230. libexe_python-20260705/libcthreads/libcthreads_extern.h +53 -0
  231. libexe_python-20260705/libcthreads/libcthreads_libcerror.h +50 -0
  232. libexe_python-20260705/libcthreads/libcthreads_lock.c +391 -0
  233. libexe_python-20260705/libcthreads/libcthreads_lock.h +88 -0
  234. libexe_python-20260705/libcthreads/libcthreads_mutex.c +601 -0
  235. libexe_python-20260705/libcthreads/libcthreads_mutex.h +98 -0
  236. libexe_python-20260705/libcthreads/libcthreads_queue.c +1150 -0
  237. libexe_python-20260705/libcthreads/libcthreads_queue.h +136 -0
  238. libexe_python-20260705/libcthreads/libcthreads_read_write_lock.c +690 -0
  239. libexe_python-20260705/libcthreads/libcthreads_read_write_lock.h +119 -0
  240. libexe_python-20260705/libcthreads/libcthreads_repeating_thread.c +683 -0
  241. libexe_python-20260705/libcthreads/libcthreads_repeating_thread.h +123 -0
  242. libexe_python-20260705/libcthreads/libcthreads_support.c +39 -0
  243. libexe_python-20260705/libcthreads/libcthreads_support.h +47 -0
  244. libexe_python-20260705/libcthreads/libcthreads_thread.c +411 -0
  245. libexe_python-20260705/libcthreads/libcthreads_thread.h +95 -0
  246. libexe_python-20260705/libcthreads/libcthreads_thread_attributes.c +149 -0
  247. libexe_python-20260705/libcthreads/libcthreads_thread_attributes.h +78 -0
  248. libexe_python-20260705/libcthreads/libcthreads_thread_pool.c +1725 -0
  249. libexe_python-20260705/libcthreads/libcthreads_thread_pool.h +177 -0
  250. libexe_python-20260705/libcthreads/libcthreads_types.h +63 -0
  251. libexe_python-20260705/libcthreads/libcthreads_unused.h +44 -0
  252. libexe_python-20260705/libexe/Makefile.in +1040 -0
  253. libexe_python-20260705/libexe/exe_file_header.h +508 -0
  254. libexe_python-20260705/libexe/exe_le_header.h +52 -0
  255. libexe_python-20260705/libexe/exe_mz_header.h +124 -0
  256. libexe_python-20260705/libexe/exe_ne_header.h +56 -0
  257. libexe_python-20260705/libexe/exe_pe_header.h +48 -0
  258. libexe_python-20260705/libexe/exe_section_table.h +93 -0
  259. libexe_python-20260705/libexe/libexe.c +84 -0
  260. libexe_python-20260705/libexe/libexe.rc +38 -0
  261. libexe_python-20260705/libexe/libexe.rc.in +38 -0
  262. libexe_python-20260705/libexe/libexe_codepage.h +90 -0
  263. libexe_python-20260705/libexe/libexe_coff_header.c +358 -0
  264. libexe_python-20260705/libexe/libexe_coff_header.h +77 -0
  265. libexe_python-20260705/libexe/libexe_coff_optional_header.c +1257 -0
  266. libexe_python-20260705/libexe/libexe_coff_optional_header.h +72 -0
  267. libexe_python-20260705/libexe/libexe_data_directory_descriptor.h +52 -0
  268. libexe_python-20260705/libexe/libexe_debug.c +532 -0
  269. libexe_python-20260705/libexe/libexe_debug.h +67 -0
  270. libexe_python-20260705/libexe/libexe_debug_data.c +246 -0
  271. libexe_python-20260705/libexe/libexe_debug_data.h +64 -0
  272. libexe_python-20260705/libexe/libexe_definitions.h +163 -0
  273. libexe_python-20260705/libexe/libexe_definitions.h.in +163 -0
  274. libexe_python-20260705/libexe/libexe_error.c +111 -0
  275. libexe_python-20260705/libexe/libexe_error.h +74 -0
  276. libexe_python-20260705/libexe/libexe_export_table.c +248 -0
  277. libexe_python-20260705/libexe/libexe_export_table.h +64 -0
  278. libexe_python-20260705/libexe/libexe_extern.h +53 -0
  279. libexe_python-20260705/libexe/libexe_file.c +1693 -0
  280. libexe_python-20260705/libexe/libexe_file.h +165 -0
  281. libexe_python-20260705/libexe/libexe_import_table.c +248 -0
  282. libexe_python-20260705/libexe/libexe_import_table.h +64 -0
  283. libexe_python-20260705/libexe/libexe_io_handle.c +1272 -0
  284. libexe_python-20260705/libexe/libexe_io_handle.h +142 -0
  285. libexe_python-20260705/libexe/libexe_le_header.c +297 -0
  286. libexe_python-20260705/libexe/libexe_le_header.h +69 -0
  287. libexe_python-20260705/libexe/libexe_libbfio.h +58 -0
  288. libexe_python-20260705/libexe/libexe_libcdata.h +54 -0
  289. libexe_python-20260705/libexe/libexe_libcerror.h +50 -0
  290. libexe_python-20260705/libexe/libexe_libclocale.h +50 -0
  291. libexe_python-20260705/libexe/libexe_libcnotify.h +50 -0
  292. libexe_python-20260705/libexe/libexe_libfcache.h +50 -0
  293. libexe_python-20260705/libexe/libexe_libfdata.h +54 -0
  294. libexe_python-20260705/libexe/libexe_libfdatetime.h +56 -0
  295. libexe_python-20260705/libexe/libexe_libuna.h +60 -0
  296. libexe_python-20260705/libexe/libexe_mz_header.c +440 -0
  297. libexe_python-20260705/libexe/libexe_mz_header.h +69 -0
  298. libexe_python-20260705/libexe/libexe_ne_header.c +297 -0
  299. libexe_python-20260705/libexe/libexe_ne_header.h +69 -0
  300. libexe_python-20260705/libexe/libexe_notify.c +120 -0
  301. libexe_python-20260705/libexe/libexe_notify.h +63 -0
  302. libexe_python-20260705/libexe/libexe_section.c +996 -0
  303. libexe_python-20260705/libexe/libexe_section.h +164 -0
  304. libexe_python-20260705/libexe/libexe_section_descriptor.c +320 -0
  305. libexe_python-20260705/libexe/libexe_section_descriptor.h +87 -0
  306. libexe_python-20260705/libexe/libexe_section_io_handle.c +651 -0
  307. libexe_python-20260705/libexe/libexe_section_io_handle.h +111 -0
  308. libexe_python-20260705/libexe/libexe_support.c +430 -0
  309. libexe_python-20260705/libexe/libexe_support.h +82 -0
  310. libexe_python-20260705/libexe/libexe_types.h +49 -0
  311. libexe_python-20260705/libexe/libexe_unused.h +44 -0
  312. libexe_python-20260705/libexe.spec +99 -0
  313. libexe_python-20260705/libfcache/Makefile.in +870 -0
  314. libexe_python-20260705/libfcache/libfcache_cache.c +1118 -0
  315. libexe_python-20260705/libfcache/libfcache_cache.h +149 -0
  316. libexe_python-20260705/libfcache/libfcache_cache_value.c +502 -0
  317. libexe_python-20260705/libfcache/libfcache_cache_value.h +132 -0
  318. libexe_python-20260705/libfcache/libfcache_date_time.c +92 -0
  319. libexe_python-20260705/libfcache/libfcache_date_time.h +45 -0
  320. libexe_python-20260705/libfcache/libfcache_definitions.h +58 -0
  321. libexe_python-20260705/libfcache/libfcache_error.c +111 -0
  322. libexe_python-20260705/libfcache/libfcache_error.h +74 -0
  323. libexe_python-20260705/libfcache/libfcache_extern.h +40 -0
  324. libexe_python-20260705/libfcache/libfcache_libcdata.h +54 -0
  325. libexe_python-20260705/libfcache/libfcache_libcerror.h +50 -0
  326. libexe_python-20260705/libfcache/libfcache_support.c +41 -0
  327. libexe_python-20260705/libfcache/libfcache_support.h +47 -0
  328. libexe_python-20260705/libfcache/libfcache_types.h +49 -0
  329. libexe_python-20260705/libfcache/libfcache_unused.h +44 -0
  330. libexe_python-20260705/libfdata/Makefile.in +923 -0
  331. libexe_python-20260705/libfdata/libfdata_area.c +1482 -0
  332. libexe_python-20260705/libfdata/libfdata_area.h +278 -0
  333. libexe_python-20260705/libfdata/libfdata_cache.c +59 -0
  334. libexe_python-20260705/libfdata/libfdata_cache.h +56 -0
  335. libexe_python-20260705/libfdata/libfdata_definitions.h +249 -0
  336. libexe_python-20260705/libfdata/libfdata_error.c +111 -0
  337. libexe_python-20260705/libfdata/libfdata_error.h +74 -0
  338. libexe_python-20260705/libfdata/libfdata_extern.h +40 -0
  339. libexe_python-20260705/libfdata/libfdata_libcdata.h +54 -0
  340. libexe_python-20260705/libfdata/libfdata_libcerror.h +50 -0
  341. libexe_python-20260705/libfdata/libfdata_libcnotify.h +50 -0
  342. libexe_python-20260705/libfdata/libfdata_libfcache.h +50 -0
  343. libexe_python-20260705/libfdata/libfdata_list.c +4426 -0
  344. libexe_python-20260705/libfdata/libfdata_list.h +452 -0
  345. libexe_python-20260705/libfdata/libfdata_list_element.c +824 -0
  346. libexe_python-20260705/libfdata/libfdata_list_element.h +159 -0
  347. libexe_python-20260705/libfdata/libfdata_mapped_range.c +312 -0
  348. libexe_python-20260705/libfdata/libfdata_mapped_range.h +77 -0
  349. libexe_python-20260705/libfdata/libfdata_notify.c +120 -0
  350. libexe_python-20260705/libfdata/libfdata_notify.h +63 -0
  351. libexe_python-20260705/libfdata/libfdata_range.c +358 -0
  352. libexe_python-20260705/libfdata/libfdata_range.h +94 -0
  353. libexe_python-20260705/libfdata/libfdata_range_list.c +1196 -0
  354. libexe_python-20260705/libfdata/libfdata_range_list.h +214 -0
  355. libexe_python-20260705/libfdata/libfdata_segments_array.c +914 -0
  356. libexe_python-20260705/libfdata/libfdata_segments_array.h +94 -0
  357. libexe_python-20260705/libfdata/libfdata_stream.c +2582 -0
  358. libexe_python-20260705/libfdata/libfdata_stream.h +363 -0
  359. libexe_python-20260705/libfdata/libfdata_support.c +41 -0
  360. libexe_python-20260705/libfdata/libfdata_support.h +47 -0
  361. libexe_python-20260705/libfdata/libfdata_types.h +59 -0
  362. libexe_python-20260705/libfdata/libfdata_unused.h +44 -0
  363. libexe_python-20260705/libfdata/libfdata_vector.c +1932 -0
  364. libexe_python-20260705/libfdata/libfdata_vector.h +295 -0
  365. libexe_python-20260705/libfdatetime/Makefile.in +901 -0
  366. libexe_python-20260705/libfdatetime/libfdatetime_date_time_values.c +1906 -0
  367. libexe_python-20260705/libfdatetime/libfdatetime_date_time_values.h +121 -0
  368. libexe_python-20260705/libfdatetime/libfdatetime_definitions.h +121 -0
  369. libexe_python-20260705/libfdatetime/libfdatetime_error.c +111 -0
  370. libexe_python-20260705/libfdatetime/libfdatetime_error.h +74 -0
  371. libexe_python-20260705/libfdatetime/libfdatetime_extern.h +40 -0
  372. libexe_python-20260705/libfdatetime/libfdatetime_fat_date_time.c +1258 -0
  373. libexe_python-20260705/libfdatetime/libfdatetime_fat_date_time.h +172 -0
  374. libexe_python-20260705/libfdatetime/libfdatetime_filetime.c +1465 -0
  375. libexe_python-20260705/libfdatetime/libfdatetime_filetime.h +177 -0
  376. libexe_python-20260705/libfdatetime/libfdatetime_floatingtime.c +1333 -0
  377. libexe_python-20260705/libfdatetime/libfdatetime_floatingtime.h +168 -0
  378. libexe_python-20260705/libfdatetime/libfdatetime_hfs_time.c +1329 -0
  379. libexe_python-20260705/libfdatetime/libfdatetime_hfs_time.h +166 -0
  380. libexe_python-20260705/libfdatetime/libfdatetime_libcerror.h +50 -0
  381. libexe_python-20260705/libfdatetime/libfdatetime_nsf_timedate.c +1373 -0
  382. libexe_python-20260705/libfdatetime/libfdatetime_nsf_timedate.h +177 -0
  383. libexe_python-20260705/libfdatetime/libfdatetime_posix_time.c +1918 -0
  384. libexe_python-20260705/libfdatetime/libfdatetime_posix_time.h +189 -0
  385. libexe_python-20260705/libfdatetime/libfdatetime_support.c +41 -0
  386. libexe_python-20260705/libfdatetime/libfdatetime_support.h +47 -0
  387. libexe_python-20260705/libfdatetime/libfdatetime_systemtime.c +1779 -0
  388. libexe_python-20260705/libfdatetime/libfdatetime_systemtime.h +180 -0
  389. libexe_python-20260705/libfdatetime/libfdatetime_types.h +63 -0
  390. libexe_python-20260705/libfdatetime/libfdatetime_unused.h +44 -0
  391. libexe_python-20260705/libuna/Makefile.in +1270 -0
  392. libexe_python-20260705/libuna/libuna_base16_stream.c +1511 -0
  393. libexe_python-20260705/libuna/libuna_base16_stream.h +93 -0
  394. libexe_python-20260705/libuna/libuna_base32_stream.c +3035 -0
  395. libexe_python-20260705/libuna/libuna_base32_stream.h +131 -0
  396. libexe_python-20260705/libuna/libuna_base64_stream.c +2832 -0
  397. libexe_python-20260705/libuna/libuna_base64_stream.h +131 -0
  398. libexe_python-20260705/libuna/libuna_byte_stream.c +633 -0
  399. libexe_python-20260705/libuna/libuna_byte_stream.h +104 -0
  400. libexe_python-20260705/libuna/libuna_codepage_iso_8859_10.c +73 -0
  401. libexe_python-20260705/libuna/libuna_codepage_iso_8859_10.h +48 -0
  402. libexe_python-20260705/libuna/libuna_codepage_iso_8859_13.c +82 -0
  403. libexe_python-20260705/libuna/libuna_codepage_iso_8859_13.h +48 -0
  404. libexe_python-20260705/libuna/libuna_codepage_iso_8859_14.c +66 -0
  405. libexe_python-20260705/libuna/libuna_codepage_iso_8859_14.h +51 -0
  406. libexe_python-20260705/libuna/libuna_codepage_iso_8859_15.c +46 -0
  407. libexe_python-20260705/libuna/libuna_codepage_iso_8859_15.h +45 -0
  408. libexe_python-20260705/libuna/libuna_codepage_iso_8859_16.c +78 -0
  409. libexe_python-20260705/libuna/libuna_codepage_iso_8859_16.h +57 -0
  410. libexe_python-20260705/libuna/libuna_codepage_iso_8859_2.c +82 -0
  411. libexe_python-20260705/libuna/libuna_codepage_iso_8859_2.h +51 -0
  412. libexe_python-20260705/libuna/libuna_codepage_iso_8859_3.c +79 -0
  413. libexe_python-20260705/libuna/libuna_codepage_iso_8859_3.h +57 -0
  414. libexe_python-20260705/libuna/libuna_codepage_iso_8859_4.c +80 -0
  415. libexe_python-20260705/libuna/libuna_codepage_iso_8859_4.h +48 -0
  416. libexe_python-20260705/libuna/libuna_codepage_iso_8859_5.c +62 -0
  417. libexe_python-20260705/libuna/libuna_codepage_iso_8859_5.h +45 -0
  418. libexe_python-20260705/libuna/libuna_codepage_iso_8859_6.c +58 -0
  419. libexe_python-20260705/libuna/libuna_codepage_iso_8859_6.h +45 -0
  420. libexe_python-20260705/libuna/libuna_codepage_iso_8859_7.c +66 -0
  421. libexe_python-20260705/libuna/libuna_codepage_iso_8859_7.h +48 -0
  422. libexe_python-20260705/libuna/libuna_codepage_iso_8859_8.c +61 -0
  423. libexe_python-20260705/libuna/libuna_codepage_iso_8859_8.h +48 -0
  424. libexe_python-20260705/libuna/libuna_codepage_iso_8859_9.c +50 -0
  425. libexe_python-20260705/libuna/libuna_codepage_iso_8859_9.h +45 -0
  426. libexe_python-20260705/libuna/libuna_codepage_koi8_r.c +392 -0
  427. libexe_python-20260705/libuna/libuna_codepage_koi8_r.h +54 -0
  428. libexe_python-20260705/libuna/libuna_codepage_koi8_u.c +424 -0
  429. libexe_python-20260705/libuna/libuna_codepage_koi8_u.h +54 -0
  430. libexe_python-20260705/libuna/libuna_codepage_mac_arabic.c +352 -0
  431. libexe_python-20260705/libuna/libuna_codepage_mac_arabic.h +54 -0
  432. libexe_python-20260705/libuna/libuna_codepage_mac_celtic.c +395 -0
  433. libexe_python-20260705/libuna/libuna_codepage_mac_celtic.h +54 -0
  434. libexe_python-20260705/libuna/libuna_codepage_mac_centraleurroman.c +319 -0
  435. libexe_python-20260705/libuna/libuna_codepage_mac_centraleurroman.h +54 -0
  436. libexe_python-20260705/libuna/libuna_codepage_mac_croatian.c +378 -0
  437. libexe_python-20260705/libuna/libuna_codepage_mac_croatian.h +54 -0
  438. libexe_python-20260705/libuna/libuna_codepage_mac_cyrillic.c +325 -0
  439. libexe_python-20260705/libuna/libuna_codepage_mac_cyrillic.h +54 -0
  440. libexe_python-20260705/libuna/libuna_codepage_mac_dingbats.c +347 -0
  441. libexe_python-20260705/libuna/libuna_codepage_mac_dingbats.h +54 -0
  442. libexe_python-20260705/libuna/libuna_codepage_mac_farsi.c +372 -0
  443. libexe_python-20260705/libuna/libuna_codepage_mac_farsi.h +54 -0
  444. libexe_python-20260705/libuna/libuna_codepage_mac_gaelic.c +437 -0
  445. libexe_python-20260705/libuna/libuna_codepage_mac_gaelic.h +54 -0
  446. libexe_python-20260705/libuna/libuna_codepage_mac_greek.c +305 -0
  447. libexe_python-20260705/libuna/libuna_codepage_mac_greek.h +54 -0
  448. libexe_python-20260705/libuna/libuna_codepage_mac_icelandic.c +381 -0
  449. libexe_python-20260705/libuna/libuna_codepage_mac_icelandic.h +54 -0
  450. libexe_python-20260705/libuna/libuna_codepage_mac_inuit.c +380 -0
  451. libexe_python-20260705/libuna/libuna_codepage_mac_inuit.h +54 -0
  452. libexe_python-20260705/libuna/libuna_codepage_mac_roman.c +387 -0
  453. libexe_python-20260705/libuna/libuna_codepage_mac_roman.h +54 -0
  454. libexe_python-20260705/libuna/libuna_codepage_mac_romanian.c +396 -0
  455. libexe_python-20260705/libuna/libuna_codepage_mac_romanian.h +54 -0
  456. libexe_python-20260705/libuna/libuna_codepage_mac_russian.c +317 -0
  457. libexe_python-20260705/libuna/libuna_codepage_mac_russian.h +54 -0
  458. libexe_python-20260705/libuna/libuna_codepage_mac_symbol.c +537 -0
  459. libexe_python-20260705/libuna/libuna_codepage_mac_symbol.h +59 -0
  460. libexe_python-20260705/libuna/libuna_codepage_mac_thai.c +330 -0
  461. libexe_python-20260705/libuna/libuna_codepage_mac_thai.h +59 -0
  462. libexe_python-20260705/libuna/libuna_codepage_mac_turkish.c +397 -0
  463. libexe_python-20260705/libuna/libuna_codepage_mac_turkish.h +54 -0
  464. libexe_python-20260705/libuna/libuna_codepage_mac_ukrainian.c +321 -0
  465. libexe_python-20260705/libuna/libuna_codepage_mac_ukrainian.h +54 -0
  466. libexe_python-20260705/libuna/libuna_codepage_windows_1250.c +313 -0
  467. libexe_python-20260705/libuna/libuna_codepage_windows_1250.h +54 -0
  468. libexe_python-20260705/libuna/libuna_codepage_windows_1251.c +301 -0
  469. libexe_python-20260705/libuna/libuna_codepage_windows_1251.h +54 -0
  470. libexe_python-20260705/libuna/libuna_codepage_windows_1252.c +287 -0
  471. libexe_python-20260705/libuna/libuna_codepage_windows_1252.h +54 -0
  472. libexe_python-20260705/libuna/libuna_codepage_windows_1253.c +291 -0
  473. libexe_python-20260705/libuna/libuna_codepage_windows_1253.h +54 -0
  474. libexe_python-20260705/libuna/libuna_codepage_windows_1254.c +348 -0
  475. libexe_python-20260705/libuna/libuna_codepage_windows_1254.h +54 -0
  476. libexe_python-20260705/libuna/libuna_codepage_windows_1255.c +328 -0
  477. libexe_python-20260705/libuna/libuna_codepage_windows_1255.h +54 -0
  478. libexe_python-20260705/libuna/libuna_codepage_windows_1256.c +372 -0
  479. libexe_python-20260705/libuna/libuna_codepage_windows_1256.h +54 -0
  480. libexe_python-20260705/libuna/libuna_codepage_windows_1257.c +303 -0
  481. libexe_python-20260705/libuna/libuna_codepage_windows_1257.h +54 -0
  482. libexe_python-20260705/libuna/libuna_codepage_windows_1258.c +349 -0
  483. libexe_python-20260705/libuna/libuna_codepage_windows_1258.h +54 -0
  484. libexe_python-20260705/libuna/libuna_codepage_windows_874.c +274 -0
  485. libexe_python-20260705/libuna/libuna_codepage_windows_874.h +54 -0
  486. libexe_python-20260705/libuna/libuna_codepage_windows_932.c +4913 -0
  487. libexe_python-20260705/libuna/libuna_codepage_windows_932.h +59 -0
  488. libexe_python-20260705/libuna/libuna_codepage_windows_936.c +7371 -0
  489. libexe_python-20260705/libuna/libuna_codepage_windows_936.h +59 -0
  490. libexe_python-20260705/libuna/libuna_codepage_windows_949.c +8163 -0
  491. libexe_python-20260705/libuna/libuna_codepage_windows_949.h +59 -0
  492. libexe_python-20260705/libuna/libuna_codepage_windows_950.c +6390 -0
  493. libexe_python-20260705/libuna/libuna_codepage_windows_950.h +59 -0
  494. libexe_python-20260705/libuna/libuna_definitions.h +436 -0
  495. libexe_python-20260705/libuna/libuna_error.c +111 -0
  496. libexe_python-20260705/libuna/libuna_error.h +74 -0
  497. libexe_python-20260705/libuna/libuna_extern.h +53 -0
  498. libexe_python-20260705/libuna/libuna_libcerror.h +50 -0
  499. libexe_python-20260705/libuna/libuna_scsu.c +64 -0
  500. libexe_python-20260705/libuna/libuna_scsu.h +45 -0
  501. libexe_python-20260705/libuna/libuna_support.c +39 -0
  502. libexe_python-20260705/libuna/libuna_support.h +49 -0
  503. libexe_python-20260705/libuna/libuna_types.h +53 -0
  504. libexe_python-20260705/libuna/libuna_unicode_character.c +5828 -0
  505. libexe_python-20260705/libuna/libuna_unicode_character.h +260 -0
  506. libexe_python-20260705/libuna/libuna_unused.h +44 -0
  507. libexe_python-20260705/libuna/libuna_url_stream.c +584 -0
  508. libexe_python-20260705/libuna/libuna_url_stream.h +71 -0
  509. libexe_python-20260705/libuna/libuna_utf16_stream.c +815 -0
  510. libexe_python-20260705/libuna/libuna_utf16_stream.h +109 -0
  511. libexe_python-20260705/libuna/libuna_utf16_string.c +3950 -0
  512. libexe_python-20260705/libuna/libuna_utf16_string.h +325 -0
  513. libexe_python-20260705/libuna/libuna_utf32_stream.c +819 -0
  514. libexe_python-20260705/libuna/libuna_utf32_stream.h +109 -0
  515. libexe_python-20260705/libuna/libuna_utf32_string.c +3808 -0
  516. libexe_python-20260705/libuna/libuna_utf32_string.h +321 -0
  517. libexe_python-20260705/libuna/libuna_utf7_stream.c +628 -0
  518. libexe_python-20260705/libuna/libuna_utf7_stream.h +98 -0
  519. libexe_python-20260705/libuna/libuna_utf8_stream.c +748 -0
  520. libexe_python-20260705/libuna/libuna_utf8_stream.h +105 -0
  521. libexe_python-20260705/libuna/libuna_utf8_string.c +4092 -0
  522. libexe_python-20260705/libuna/libuna_utf8_string.h +329 -0
  523. libexe_python-20260705/ltmain.sh +11436 -0
  524. libexe_python-20260705/m4/common.m4 +656 -0
  525. libexe_python-20260705/m4/libbfio.m4 +215 -0
  526. libexe_python-20260705/m4/libcdata.m4 +227 -0
  527. libexe_python-20260705/m4/libcerror.m4 +186 -0
  528. libexe_python-20260705/m4/libcfile.m4 +307 -0
  529. libexe_python-20260705/m4/libclocale.m4 +242 -0
  530. libexe_python-20260705/m4/libcnotify.m4 +160 -0
  531. libexe_python-20260705/m4/libcpath.m4 +274 -0
  532. libexe_python-20260705/m4/libcsplit.m4 +183 -0
  533. libexe_python-20260705/m4/libcthreads.m4 +214 -0
  534. libexe_python-20260705/m4/libfcache.m4 +173 -0
  535. libexe_python-20260705/m4/libfdata.m4 +241 -0
  536. libexe_python-20260705/m4/libfdatetime.m4 +219 -0
  537. libexe_python-20260705/m4/libtool.m4 +8427 -0
  538. libexe_python-20260705/m4/libuna.m4 +311 -0
  539. {libexe-20240420 → libexe_python-20260705}/m4/ltoptions.m4 +0 -0
  540. {libexe-20240420 → libexe_python-20260705}/m4/ltsugar.m4 +0 -0
  541. {libexe-20240420 → libexe_python-20260705}/m4/ltversion.m4 +0 -0
  542. {libexe-20240420 → libexe_python-20260705}/m4/lt~obsolete.m4 +0 -0
  543. libexe_python-20260705/m4/pthread.m4 +126 -0
  544. libexe_python-20260705/m4/python.m4 +222 -0
  545. libexe_python-20260705/m4/tests.m4 +319 -0
  546. libexe_python-20260705/m4/types.m4 +133 -0
  547. libexe_python-20260705/m4/yaltools.m4 +89 -0
  548. libexe_python-20260705/manuals/Makefile.am +11 -0
  549. libexe_python-20260705/manuals/Makefile.in +793 -0
  550. libexe_python-20260705/manuals/exeinfo.1 +92 -0
  551. libexe_python-20260705/manuals/libexe.3 +401 -0
  552. libexe_python-20260705/msvscpp/Makefile.in +704 -0
  553. libexe_python-20260705/msvscpp/libexe.sln +417 -0
  554. libexe_python-20260705/msvscpp/pyexe/pyexe.vcproj +284 -0
  555. libexe_python-20260705/ossfuzz/Makefile.in +912 -0
  556. libexe_python-20260705/ossfuzz/file_fuzzer.cc +99 -0
  557. libexe_python-20260705/ossfuzz/ossfuzz_libbfio.h +58 -0
  558. libexe_python-20260705/ossfuzz/ossfuzz_libexe.h +30 -0
  559. libexe_python-20260705/po/Makevars +45 -0
  560. libexe_python-20260705/pyexe/Makefile.am +53 -0
  561. libexe_python-20260705/pyexe/Makefile.in +1028 -0
  562. libexe_python-20260705/pyexe/pyexe.c +678 -0
  563. libexe_python-20260705/pyexe/pyexe.h +71 -0
  564. libexe_python-20260705/pyexe/pyexe_codepage.c +138 -0
  565. libexe_python-20260705/pyexe/pyexe_codepage.h +42 -0
  566. libexe_python-20260705/pyexe/pyexe_datetime.c +691 -0
  567. libexe_python-20260705/pyexe/pyexe_datetime.h +65 -0
  568. libexe_python-20260705/pyexe/pyexe_error.c +422 -0
  569. libexe_python-20260705/pyexe/pyexe_error.h +60 -0
  570. libexe_python-20260705/pyexe/pyexe_file.c +1465 -0
  571. libexe_python-20260705/pyexe/pyexe_file.h +125 -0
  572. libexe_python-20260705/pyexe/pyexe_file_object_io_handle.c +1524 -0
  573. libexe_python-20260705/pyexe/pyexe_file_object_io_handle.h +141 -0
  574. libexe_python-20260705/pyexe/pyexe_integer.c +399 -0
  575. libexe_python-20260705/pyexe/pyexe_integer.h +56 -0
  576. libexe_python-20260705/pyexe/pyexe_libbfio.h +54 -0
  577. libexe_python-20260705/pyexe/pyexe_libcerror.h +50 -0
  578. libexe_python-20260705/pyexe/pyexe_libclocale.h +50 -0
  579. libexe_python-20260705/pyexe/pyexe_libexe.h +30 -0
  580. libexe_python-20260705/pyexe/pyexe_python.h +83 -0
  581. libexe_python-20260705/pyexe/pyexe_section.c +1055 -0
  582. libexe_python-20260705/pyexe/pyexe_section.h +106 -0
  583. libexe_python-20260705/pyexe/pyexe_sections.c +452 -0
  584. libexe_python-20260705/pyexe/pyexe_sections.h +95 -0
  585. libexe_python-20260705/pyexe/pyexe_unused.h +44 -0
  586. libexe_python-20260705/pyproject.toml +35 -0
  587. libexe_python-20260705/pyproject.toml.in +35 -0
  588. libexe_python-20260705/tests/Makefile.am +416 -0
  589. libexe_python-20260705/tests/Makefile.in +1523 -0
  590. libexe_python-20260705/tests/atlocal.in +29 -0
  591. libexe_python-20260705/tests/exe_test_coff_header.c +317 -0
  592. libexe_python-20260705/tests/exe_test_coff_optional_header.c +317 -0
  593. libexe_python-20260705/tests/exe_test_data_directory_descriptor.c +58 -0
  594. libexe_python-20260705/tests/exe_test_debug_data.c +420 -0
  595. libexe_python-20260705/tests/exe_test_error.c +150 -0
  596. libexe_python-20260705/tests/exe_test_export_table.c +420 -0
  597. libexe_python-20260705/tests/exe_test_file.c +2054 -0
  598. libexe_python-20260705/tests/exe_test_functions.c +562 -0
  599. libexe_python-20260705/tests/exe_test_functions.h +66 -0
  600. libexe_python-20260705/tests/exe_test_getopt.c +190 -0
  601. libexe_python-20260705/tests/exe_test_getopt.h +68 -0
  602. libexe_python-20260705/tests/exe_test_import_table.c +420 -0
  603. libexe_python-20260705/tests/exe_test_io_handle.c +459 -0
  604. libexe_python-20260705/tests/exe_test_le_header.c +317 -0
  605. libexe_python-20260705/tests/exe_test_libbfio.h +58 -0
  606. libexe_python-20260705/tests/exe_test_libcerror.h +50 -0
  607. libexe_python-20260705/tests/exe_test_libclocale.h +50 -0
  608. libexe_python-20260705/tests/exe_test_libcnotify.h +50 -0
  609. libexe_python-20260705/tests/exe_test_libexe.h +30 -0
  610. libexe_python-20260705/tests/exe_test_libuna.h +60 -0
  611. libexe_python-20260705/tests/exe_test_macros.h +257 -0
  612. libexe_python-20260705/tests/exe_test_memory.c +199 -0
  613. libexe_python-20260705/tests/exe_test_memory.h +66 -0
  614. libexe_python-20260705/tests/exe_test_mz_header.c +315 -0
  615. libexe_python-20260705/tests/exe_test_ne_header.c +315 -0
  616. libexe_python-20260705/tests/exe_test_notify.c +229 -0
  617. libexe_python-20260705/tests/exe_test_section.c +152 -0
  618. libexe_python-20260705/tests/exe_test_section_descriptor.c +439 -0
  619. libexe_python-20260705/tests/exe_test_section_io_handle.c +128 -0
  620. libexe_python-20260705/tests/exe_test_support.c +796 -0
  621. libexe_python-20260705/tests/exe_test_tools_info_handle.c +299 -0
  622. libexe_python-20260705/tests/exe_test_tools_output.c +105 -0
  623. libexe_python-20260705/tests/exe_test_tools_signal.c +213 -0
  624. libexe_python-20260705/tests/exe_test_unused.h +50 -0
  625. libexe_python-20260705/tests/generate_test_inputs.sh +301 -0
  626. libexe_python-20260705/tests/package.m4 +5 -0
  627. libexe_python-20260705/tests/pyexe_test_file.py +198 -0
  628. libexe_python-20260705/tests/pyexe_test_support.py +111 -0
  629. libexe_python-20260705/tests/test_library.at +41 -0
  630. libexe_python-20260705/tests/test_macros.at +188 -0
  631. libexe_python-20260705/tests/test_manpages.at +73 -0
  632. libexe_python-20260705/tests/test_python_module.at +145 -0
  633. libexe_python-20260705/tests/test_tools.at +249 -0
  634. libexe-20240420/AUTHORS +0 -4
  635. libexe-20240420/Makefile.am +0 -102
  636. libexe-20240420/Makefile.in +0 -1185
  637. libexe-20240420/PKG-INFO +0 -13
  638. libexe-20240420/README +0 -19
  639. libexe-20240420/acinclude.m4 +0 -50
  640. libexe-20240420/aclocal.m4 +0 -1545
  641. libexe-20240420/common/Makefile.in +0 -754
  642. libexe-20240420/common/byte_stream.h +0 -257
  643. libexe-20240420/common/common.h +0 -43
  644. libexe-20240420/common/config.h +0 -581
  645. libexe-20240420/common/config.h.in +0 -580
  646. libexe-20240420/common/config_borlandc.h +0 -26
  647. libexe-20240420/common/config_msc.h +0 -34
  648. libexe-20240420/common/config_winapi.h +0 -95
  649. libexe-20240420/common/file_stream.h +0 -151
  650. libexe-20240420/common/memory.h +0 -129
  651. libexe-20240420/common/narrow_string.h +0 -187
  652. libexe-20240420/common/system_string.h +0 -154
  653. libexe-20240420/common/types.h +0 -392
  654. libexe-20240420/common/types.h.in +0 -392
  655. libexe-20240420/common/wide_string.h +0 -175
  656. libexe-20240420/config.guess +0 -1774
  657. libexe-20240420/config.sub +0 -1907
  658. libexe-20240420/configure +0 -57055
  659. libexe-20240420/configure.ac +0 -228
  660. libexe-20240420/dpkg/changelog +0 -5
  661. libexe-20240420/dpkg/compat +0 -1
  662. libexe-20240420/dpkg/control +0 -65
  663. libexe-20240420/dpkg/copyright +0 -25
  664. libexe-20240420/dpkg/rules +0 -31
  665. libexe-20240420/exetools/Makefile.am +0 -54
  666. libexe-20240420/exetools/Makefile.in +0 -907
  667. libexe-20240420/exetools/exeinfo.c +0 -320
  668. libexe-20240420/exetools/exetools_getopt.c +0 -190
  669. libexe-20240420/exetools/exetools_getopt.h +0 -68
  670. libexe-20240420/exetools/exetools_i18n.h +0 -48
  671. libexe-20240420/exetools/exetools_libbfio.h +0 -58
  672. libexe-20240420/exetools/exetools_libcerror.h +0 -50
  673. libexe-20240420/exetools/exetools_libclocale.h +0 -50
  674. libexe-20240420/exetools/exetools_libcnotify.h +0 -50
  675. libexe-20240420/exetools/exetools_libexe.h +0 -30
  676. libexe-20240420/exetools/exetools_libfdatetime.h +0 -56
  677. libexe-20240420/exetools/exetools_libuna.h +0 -60
  678. libexe-20240420/exetools/exetools_output.c +0 -179
  679. libexe-20240420/exetools/exetools_output.h +0 -55
  680. libexe-20240420/exetools/exetools_signal.c +0 -262
  681. libexe-20240420/exetools/exetools_signal.h +0 -72
  682. libexe-20240420/exetools/exetools_unused.h +0 -50
  683. libexe-20240420/exetools/info_handle.c +0 -550
  684. libexe-20240420/exetools/info_handle.h +0 -92
  685. libexe-20240420/include/Makefile.in +0 -816
  686. libexe-20240420/include/libexe/codepage.h +0 -122
  687. libexe-20240420/include/libexe/definitions.h +0 -108
  688. libexe-20240420/include/libexe/definitions.h.in +0 -108
  689. libexe-20240420/include/libexe/error.h +0 -291
  690. libexe-20240420/include/libexe/extern.h +0 -44
  691. libexe-20240420/include/libexe/features.h +0 -50
  692. libexe-20240420/include/libexe/features.h.in +0 -50
  693. libexe-20240420/include/libexe/types.h +0 -212
  694. libexe-20240420/include/libexe/types.h.in +0 -212
  695. libexe-20240420/include/libexe.h +0 -489
  696. libexe-20240420/include/libexe.h.in +0 -489
  697. libexe-20240420/libbfio/Makefile.in +0 -917
  698. libexe-20240420/libbfio/libbfio_codepage.h +0 -90
  699. libexe-20240420/libbfio/libbfio_definitions.h +0 -89
  700. libexe-20240420/libbfio/libbfio_error.c +0 -111
  701. libexe-20240420/libbfio/libbfio_error.h +0 -74
  702. libexe-20240420/libbfio/libbfio_extern.h +0 -46
  703. libexe-20240420/libbfio/libbfio_file.c +0 -444
  704. libexe-20240420/libbfio/libbfio_file.h +0 -90
  705. libexe-20240420/libbfio/libbfio_file_io_handle.c +0 -1198
  706. libexe-20240420/libbfio/libbfio_file_io_handle.h +0 -152
  707. libexe-20240420/libbfio/libbfio_file_pool.c +0 -494
  708. libexe-20240420/libbfio/libbfio_file_pool.h +0 -81
  709. libexe-20240420/libbfio/libbfio_file_range.c +0 -468
  710. libexe-20240420/libbfio/libbfio_file_range.h +0 -104
  711. libexe-20240420/libbfio/libbfio_file_range_io_handle.c +0 -1158
  712. libexe-20240420/libbfio/libbfio_file_range_io_handle.h +0 -160
  713. libexe-20240420/libbfio/libbfio_handle.c +0 -2708
  714. libexe-20240420/libbfio/libbfio_handle.h +0 -363
  715. libexe-20240420/libbfio/libbfio_libcdata.h +0 -54
  716. libexe-20240420/libbfio/libbfio_libcerror.h +0 -50
  717. libexe-20240420/libbfio/libbfio_libcfile.h +0 -50
  718. libexe-20240420/libbfio/libbfio_libclocale.h +0 -50
  719. libexe-20240420/libbfio/libbfio_libcpath.h +0 -48
  720. libexe-20240420/libbfio/libbfio_libcthreads.h +0 -64
  721. libexe-20240420/libbfio/libbfio_libuna.h +0 -60
  722. libexe-20240420/libbfio/libbfio_memory_range.c +0 -205
  723. libexe-20240420/libbfio/libbfio_memory_range.h +0 -60
  724. libexe-20240420/libbfio/libbfio_memory_range_io_handle.c +0 -871
  725. libexe-20240420/libbfio/libbfio_memory_range_io_handle.h +0 -129
  726. libexe-20240420/libbfio/libbfio_pool.c +0 -3521
  727. libexe-20240420/libbfio/libbfio_pool.h +0 -275
  728. libexe-20240420/libbfio/libbfio_support.c +0 -93
  729. libexe-20240420/libbfio/libbfio_support.h +0 -58
  730. libexe-20240420/libbfio/libbfio_system_string.c +0 -1017
  731. libexe-20240420/libbfio/libbfio_system_string.h +0 -95
  732. libexe-20240420/libbfio/libbfio_types.h +0 -49
  733. libexe-20240420/libbfio/libbfio_unused.h +0 -44
  734. libexe-20240420/libcdata/Makefile.in +0 -896
  735. libexe-20240420/libcdata/libcdata_array.c +0 -2015
  736. libexe-20240420/libcdata/libcdata_array.h +0 -200
  737. libexe-20240420/libcdata/libcdata_btree.c +0 -964
  738. libexe-20240420/libcdata/libcdata_btree.h +0 -141
  739. libexe-20240420/libcdata/libcdata_btree_node.c +0 -1607
  740. libexe-20240420/libcdata/libcdata_btree_node.h +0 -101
  741. libexe-20240420/libcdata/libcdata_btree_values_list.c +0 -217
  742. libexe-20240420/libcdata/libcdata_btree_values_list.h +0 -55
  743. libexe-20240420/libcdata/libcdata_definitions.h +0 -81
  744. libexe-20240420/libcdata/libcdata_error.c +0 -111
  745. libexe-20240420/libcdata/libcdata_error.h +0 -74
  746. libexe-20240420/libcdata/libcdata_extern.h +0 -46
  747. libexe-20240420/libcdata/libcdata_libcerror.h +0 -50
  748. libexe-20240420/libcdata/libcdata_libcthreads.h +0 -64
  749. libexe-20240420/libcdata/libcdata_list.c +0 -2906
  750. libexe-20240420/libcdata/libcdata_list.h +0 -235
  751. libexe-20240420/libcdata/libcdata_list_element.c +0 -926
  752. libexe-20240420/libcdata/libcdata_list_element.h +0 -142
  753. libexe-20240420/libcdata/libcdata_range_list.c +0 -4922
  754. libexe-20240420/libcdata/libcdata_range_list.h +0 -382
  755. libexe-20240420/libcdata/libcdata_range_list_value.c +0 -429
  756. libexe-20240420/libcdata/libcdata_range_list_value.h +0 -100
  757. libexe-20240420/libcdata/libcdata_support.c +0 -39
  758. libexe-20240420/libcdata/libcdata_support.h +0 -47
  759. libexe-20240420/libcdata/libcdata_tree_node.c +0 -4216
  760. libexe-20240420/libcdata/libcdata_tree_node.h +0 -301
  761. libexe-20240420/libcdata/libcdata_types.h +0 -57
  762. libexe-20240420/libcdata/libcdata_unused.h +0 -44
  763. libexe-20240420/libcerror/Makefile.in +0 -838
  764. libexe-20240420/libcerror/libcerror_definitions.h +0 -326
  765. libexe-20240420/libcerror/libcerror_error.c +0 -827
  766. libexe-20240420/libcerror/libcerror_error.h +0 -125
  767. libexe-20240420/libcerror/libcerror_extern.h +0 -46
  768. libexe-20240420/libcerror/libcerror_support.c +0 -39
  769. libexe-20240420/libcerror/libcerror_support.h +0 -47
  770. libexe-20240420/libcerror/libcerror_system.c +0 -587
  771. libexe-20240420/libcerror/libcerror_system.h +0 -78
  772. libexe-20240420/libcerror/libcerror_types.h +0 -51
  773. libexe-20240420/libcerror/libcerror_unused.h +0 -44
  774. libexe-20240420/libcfile/Makefile.in +0 -865
  775. libexe-20240420/libcfile/libcfile_definitions.h +0 -101
  776. libexe-20240420/libcfile/libcfile_error.c +0 -111
  777. libexe-20240420/libcfile/libcfile_error.h +0 -74
  778. libexe-20240420/libcfile/libcfile_extern.h +0 -46
  779. libexe-20240420/libcfile/libcfile_file.c +0 -4570
  780. libexe-20240420/libcfile/libcfile_file.h +0 -273
  781. libexe-20240420/libcfile/libcfile_libcerror.h +0 -50
  782. libexe-20240420/libcfile/libcfile_libclocale.h +0 -50
  783. libexe-20240420/libcfile/libcfile_libcnotify.h +0 -50
  784. libexe-20240420/libcfile/libcfile_libuna.h +0 -60
  785. libexe-20240420/libcfile/libcfile_notify.c +0 -120
  786. libexe-20240420/libcfile/libcfile_notify.h +0 -63
  787. libexe-20240420/libcfile/libcfile_support.c +0 -1171
  788. libexe-20240420/libcfile/libcfile_support.h +0 -98
  789. libexe-20240420/libcfile/libcfile_system_string.c +0 -1017
  790. libexe-20240420/libcfile/libcfile_system_string.h +0 -95
  791. libexe-20240420/libcfile/libcfile_types.h +0 -47
  792. libexe-20240420/libcfile/libcfile_unused.h +0 -44
  793. libexe-20240420/libcfile/libcfile_winapi.c +0 -815
  794. libexe-20240420/libcfile/libcfile_winapi.h +0 -122
  795. libexe-20240420/libclocale/Makefile.in +0 -848
  796. libexe-20240420/libclocale/libclocale_codepage.c +0 -920
  797. libexe-20240420/libclocale/libclocale_codepage.h +0 -77
  798. libexe-20240420/libclocale/libclocale_definitions.h +0 -106
  799. libexe-20240420/libclocale/libclocale_extern.h +0 -46
  800. libexe-20240420/libclocale/libclocale_libcerror.h +0 -50
  801. libexe-20240420/libclocale/libclocale_locale.c +0 -494
  802. libexe-20240420/libclocale/libclocale_locale.h +0 -66
  803. libexe-20240420/libclocale/libclocale_support.c +0 -130
  804. libexe-20240420/libclocale/libclocale_support.h +0 -55
  805. libexe-20240420/libclocale/libclocale_unused.h +0 -44
  806. libexe-20240420/libclocale/libclocale_wide_string.c +0 -69
  807. libexe-20240420/libclocale/libclocale_wide_string.h +0 -54
  808. libexe-20240420/libcnotify/Makefile.in +0 -846
  809. libexe-20240420/libcnotify/libcnotify_definitions.h +0 -54
  810. libexe-20240420/libcnotify/libcnotify_extern.h +0 -46
  811. libexe-20240420/libcnotify/libcnotify_libcerror.h +0 -50
  812. libexe-20240420/libcnotify/libcnotify_print.c +0 -400
  813. libexe-20240420/libcnotify/libcnotify_print.h +0 -68
  814. libexe-20240420/libcnotify/libcnotify_stream.c +0 -182
  815. libexe-20240420/libcnotify/libcnotify_stream.h +0 -56
  816. libexe-20240420/libcnotify/libcnotify_support.c +0 -39
  817. libexe-20240420/libcnotify/libcnotify_support.h +0 -49
  818. libexe-20240420/libcnotify/libcnotify_unused.h +0 -44
  819. libexe-20240420/libcnotify/libcnotify_verbose.c +0 -38
  820. libexe-20240420/libcnotify/libcnotify_verbose.h +0 -50
  821. libexe-20240420/libcpath/Makefile.in +0 -850
  822. libexe-20240420/libcpath/libcpath_definitions.h +0 -83
  823. libexe-20240420/libcpath/libcpath_error.c +0 -111
  824. libexe-20240420/libcpath/libcpath_error.h +0 -74
  825. libexe-20240420/libcpath/libcpath_extern.h +0 -46
  826. libexe-20240420/libcpath/libcpath_libcerror.h +0 -50
  827. libexe-20240420/libcpath/libcpath_libclocale.h +0 -50
  828. libexe-20240420/libcpath/libcpath_libcsplit.h +0 -52
  829. libexe-20240420/libcpath/libcpath_libuna.h +0 -60
  830. libexe-20240420/libcpath/libcpath_path.c +0 -7174
  831. libexe-20240420/libcpath/libcpath_path.h +0 -273
  832. libexe-20240420/libcpath/libcpath_support.c +0 -93
  833. libexe-20240420/libcpath/libcpath_support.h +0 -58
  834. libexe-20240420/libcpath/libcpath_system_string.c +0 -1017
  835. libexe-20240420/libcpath/libcpath_system_string.h +0 -95
  836. libexe-20240420/libcpath/libcpath_unused.h +0 -44
  837. libexe-20240420/libcsplit/Makefile.in +0 -863
  838. libexe-20240420/libcsplit/libcsplit_definitions.h +0 -47
  839. libexe-20240420/libcsplit/libcsplit_error.c +0 -111
  840. libexe-20240420/libcsplit/libcsplit_error.h +0 -74
  841. libexe-20240420/libcsplit/libcsplit_extern.h +0 -46
  842. libexe-20240420/libcsplit/libcsplit_libcerror.h +0 -50
  843. libexe-20240420/libcsplit/libcsplit_narrow_split_string.c +0 -547
  844. libexe-20240420/libcsplit/libcsplit_narrow_split_string.h +0 -107
  845. libexe-20240420/libcsplit/libcsplit_narrow_string.c +0 -288
  846. libexe-20240420/libcsplit/libcsplit_narrow_string.h +0 -49
  847. libexe-20240420/libcsplit/libcsplit_support.c +0 -39
  848. libexe-20240420/libcsplit/libcsplit_support.h +0 -47
  849. libexe-20240420/libcsplit/libcsplit_types.h +0 -49
  850. libexe-20240420/libcsplit/libcsplit_unused.h +0 -44
  851. libexe-20240420/libcsplit/libcsplit_wide_split_string.c +0 -551
  852. libexe-20240420/libcsplit/libcsplit_wide_split_string.h +0 -111
  853. libexe-20240420/libcsplit/libcsplit_wide_string.c +0 -292
  854. libexe-20240420/libcsplit/libcsplit_wide_string.h +0 -53
  855. libexe-20240420/libcthreads/Makefile.in +0 -898
  856. libexe-20240420/libcthreads/libcthreads_condition.c +0 -735
  857. libexe-20240420/libcthreads/libcthreads_condition.h +0 -120
  858. libexe-20240420/libcthreads/libcthreads_definitions.h +0 -84
  859. libexe-20240420/libcthreads/libcthreads_error.c +0 -111
  860. libexe-20240420/libcthreads/libcthreads_error.h +0 -74
  861. libexe-20240420/libcthreads/libcthreads_extern.h +0 -46
  862. libexe-20240420/libcthreads/libcthreads_libcerror.h +0 -50
  863. libexe-20240420/libcthreads/libcthreads_lock.c +0 -391
  864. libexe-20240420/libcthreads/libcthreads_lock.h +0 -88
  865. libexe-20240420/libcthreads/libcthreads_mutex.c +0 -601
  866. libexe-20240420/libcthreads/libcthreads_mutex.h +0 -98
  867. libexe-20240420/libcthreads/libcthreads_queue.c +0 -1150
  868. libexe-20240420/libcthreads/libcthreads_queue.h +0 -136
  869. libexe-20240420/libcthreads/libcthreads_read_write_lock.c +0 -690
  870. libexe-20240420/libcthreads/libcthreads_read_write_lock.h +0 -119
  871. libexe-20240420/libcthreads/libcthreads_repeating_thread.c +0 -644
  872. libexe-20240420/libcthreads/libcthreads_repeating_thread.h +0 -115
  873. libexe-20240420/libcthreads/libcthreads_support.c +0 -39
  874. libexe-20240420/libcthreads/libcthreads_support.h +0 -47
  875. libexe-20240420/libcthreads/libcthreads_thread.c +0 -405
  876. libexe-20240420/libcthreads/libcthreads_thread.h +0 -95
  877. libexe-20240420/libcthreads/libcthreads_thread_attributes.c +0 -149
  878. libexe-20240420/libcthreads/libcthreads_thread_attributes.h +0 -78
  879. libexe-20240420/libcthreads/libcthreads_thread_pool.c +0 -1721
  880. libexe-20240420/libcthreads/libcthreads_thread_pool.h +0 -177
  881. libexe-20240420/libcthreads/libcthreads_types.h +0 -63
  882. libexe-20240420/libcthreads/libcthreads_unused.h +0 -44
  883. libexe-20240420/libexe/Makefile.in +0 -1029
  884. libexe-20240420/libexe/exe_file_header.h +0 -508
  885. libexe-20240420/libexe/exe_le_header.h +0 -52
  886. libexe-20240420/libexe/exe_mz_header.h +0 -124
  887. libexe-20240420/libexe/exe_ne_header.h +0 -56
  888. libexe-20240420/libexe/exe_pe_header.h +0 -48
  889. libexe-20240420/libexe/exe_section_table.h +0 -93
  890. libexe-20240420/libexe/libexe.c +0 -80
  891. libexe-20240420/libexe/libexe.rc +0 -38
  892. libexe-20240420/libexe/libexe.rc.in +0 -38
  893. libexe-20240420/libexe/libexe_codepage.h +0 -90
  894. libexe-20240420/libexe/libexe_coff_header.c +0 -358
  895. libexe-20240420/libexe/libexe_coff_header.h +0 -77
  896. libexe-20240420/libexe/libexe_coff_optional_header.c +0 -1257
  897. libexe-20240420/libexe/libexe_coff_optional_header.h +0 -72
  898. libexe-20240420/libexe/libexe_data_directory_descriptor.h +0 -52
  899. libexe-20240420/libexe/libexe_debug.c +0 -532
  900. libexe-20240420/libexe/libexe_debug.h +0 -67
  901. libexe-20240420/libexe/libexe_debug_data.c +0 -246
  902. libexe-20240420/libexe/libexe_debug_data.h +0 -64
  903. libexe-20240420/libexe/libexe_definitions.h +0 -163
  904. libexe-20240420/libexe/libexe_definitions.h.in +0 -163
  905. libexe-20240420/libexe/libexe_error.c +0 -111
  906. libexe-20240420/libexe/libexe_error.h +0 -74
  907. libexe-20240420/libexe/libexe_export_table.c +0 -248
  908. libexe-20240420/libexe/libexe_export_table.h +0 -64
  909. libexe-20240420/libexe/libexe_extern.h +0 -46
  910. libexe-20240420/libexe/libexe_file.c +0 -1693
  911. libexe-20240420/libexe/libexe_file.h +0 -165
  912. libexe-20240420/libexe/libexe_import_table.c +0 -248
  913. libexe-20240420/libexe/libexe_import_table.h +0 -64
  914. libexe-20240420/libexe/libexe_io_handle.c +0 -1265
  915. libexe-20240420/libexe/libexe_io_handle.h +0 -142
  916. libexe-20240420/libexe/libexe_le_header.c +0 -297
  917. libexe-20240420/libexe/libexe_le_header.h +0 -69
  918. libexe-20240420/libexe/libexe_libbfio.h +0 -58
  919. libexe-20240420/libexe/libexe_libcdata.h +0 -54
  920. libexe-20240420/libexe/libexe_libcerror.h +0 -50
  921. libexe-20240420/libexe/libexe_libclocale.h +0 -50
  922. libexe-20240420/libexe/libexe_libcnotify.h +0 -50
  923. libexe-20240420/libexe/libexe_libfcache.h +0 -50
  924. libexe-20240420/libexe/libexe_libfdata.h +0 -54
  925. libexe-20240420/libexe/libexe_libfdatetime.h +0 -56
  926. libexe-20240420/libexe/libexe_libuna.h +0 -60
  927. libexe-20240420/libexe/libexe_mz_header.c +0 -440
  928. libexe-20240420/libexe/libexe_mz_header.h +0 -69
  929. libexe-20240420/libexe/libexe_ne_header.c +0 -297
  930. libexe-20240420/libexe/libexe_ne_header.h +0 -69
  931. libexe-20240420/libexe/libexe_notify.c +0 -120
  932. libexe-20240420/libexe/libexe_notify.h +0 -63
  933. libexe-20240420/libexe/libexe_section.c +0 -996
  934. libexe-20240420/libexe/libexe_section.h +0 -164
  935. libexe-20240420/libexe/libexe_section_descriptor.c +0 -320
  936. libexe-20240420/libexe/libexe_section_descriptor.h +0 -87
  937. libexe-20240420/libexe/libexe_section_io_handle.c +0 -651
  938. libexe-20240420/libexe/libexe_section_io_handle.h +0 -111
  939. libexe-20240420/libexe/libexe_support.c +0 -430
  940. libexe-20240420/libexe/libexe_support.h +0 -82
  941. libexe-20240420/libexe/libexe_types.h +0 -49
  942. libexe-20240420/libexe/libexe_unused.h +0 -44
  943. libexe-20240420/libexe.spec +0 -99
  944. libexe-20240420/libfcache/Makefile.in +0 -859
  945. libexe-20240420/libfcache/libfcache_cache.c +0 -1118
  946. libexe-20240420/libfcache/libfcache_cache.h +0 -149
  947. libexe-20240420/libfcache/libfcache_cache_value.c +0 -502
  948. libexe-20240420/libfcache/libfcache_cache_value.h +0 -132
  949. libexe-20240420/libfcache/libfcache_date_time.c +0 -92
  950. libexe-20240420/libfcache/libfcache_date_time.h +0 -45
  951. libexe-20240420/libfcache/libfcache_definitions.h +0 -58
  952. libexe-20240420/libfcache/libfcache_error.c +0 -111
  953. libexe-20240420/libfcache/libfcache_error.h +0 -74
  954. libexe-20240420/libfcache/libfcache_extern.h +0 -46
  955. libexe-20240420/libfcache/libfcache_libcdata.h +0 -54
  956. libexe-20240420/libfcache/libfcache_libcerror.h +0 -50
  957. libexe-20240420/libfcache/libfcache_support.c +0 -41
  958. libexe-20240420/libfcache/libfcache_support.h +0 -47
  959. libexe-20240420/libfcache/libfcache_types.h +0 -49
  960. libexe-20240420/libfcache/libfcache_unused.h +0 -44
  961. libexe-20240420/libfdata/Makefile.in +0 -912
  962. libexe-20240420/libfdata/libfdata_area.c +0 -1482
  963. libexe-20240420/libfdata/libfdata_area.h +0 -278
  964. libexe-20240420/libfdata/libfdata_cache.c +0 -59
  965. libexe-20240420/libfdata/libfdata_cache.h +0 -56
  966. libexe-20240420/libfdata/libfdata_definitions.h +0 -249
  967. libexe-20240420/libfdata/libfdata_error.c +0 -111
  968. libexe-20240420/libfdata/libfdata_error.h +0 -74
  969. libexe-20240420/libfdata/libfdata_extern.h +0 -46
  970. libexe-20240420/libfdata/libfdata_libcdata.h +0 -54
  971. libexe-20240420/libfdata/libfdata_libcerror.h +0 -50
  972. libexe-20240420/libfdata/libfdata_libcnotify.h +0 -50
  973. libexe-20240420/libfdata/libfdata_libfcache.h +0 -50
  974. libexe-20240420/libfdata/libfdata_list.c +0 -4426
  975. libexe-20240420/libfdata/libfdata_list.h +0 -452
  976. libexe-20240420/libfdata/libfdata_list_element.c +0 -824
  977. libexe-20240420/libfdata/libfdata_list_element.h +0 -159
  978. libexe-20240420/libfdata/libfdata_mapped_range.c +0 -312
  979. libexe-20240420/libfdata/libfdata_mapped_range.h +0 -77
  980. libexe-20240420/libfdata/libfdata_notify.c +0 -120
  981. libexe-20240420/libfdata/libfdata_notify.h +0 -63
  982. libexe-20240420/libfdata/libfdata_range.c +0 -358
  983. libexe-20240420/libfdata/libfdata_range.h +0 -94
  984. libexe-20240420/libfdata/libfdata_range_list.c +0 -1196
  985. libexe-20240420/libfdata/libfdata_range_list.h +0 -214
  986. libexe-20240420/libfdata/libfdata_segments_array.c +0 -914
  987. libexe-20240420/libfdata/libfdata_segments_array.h +0 -94
  988. libexe-20240420/libfdata/libfdata_stream.c +0 -2582
  989. libexe-20240420/libfdata/libfdata_stream.h +0 -363
  990. libexe-20240420/libfdata/libfdata_support.c +0 -41
  991. libexe-20240420/libfdata/libfdata_support.h +0 -47
  992. libexe-20240420/libfdata/libfdata_types.h +0 -59
  993. libexe-20240420/libfdata/libfdata_unused.h +0 -44
  994. libexe-20240420/libfdata/libfdata_vector.c +0 -1932
  995. libexe-20240420/libfdata/libfdata_vector.h +0 -295
  996. libexe-20240420/libfdatetime/Makefile.in +0 -890
  997. libexe-20240420/libfdatetime/libfdatetime_date_time_values.c +0 -1906
  998. libexe-20240420/libfdatetime/libfdatetime_date_time_values.h +0 -121
  999. libexe-20240420/libfdatetime/libfdatetime_definitions.h +0 -121
  1000. libexe-20240420/libfdatetime/libfdatetime_error.c +0 -111
  1001. libexe-20240420/libfdatetime/libfdatetime_error.h +0 -74
  1002. libexe-20240420/libfdatetime/libfdatetime_extern.h +0 -46
  1003. libexe-20240420/libfdatetime/libfdatetime_fat_date_time.c +0 -1258
  1004. libexe-20240420/libfdatetime/libfdatetime_fat_date_time.h +0 -172
  1005. libexe-20240420/libfdatetime/libfdatetime_filetime.c +0 -1465
  1006. libexe-20240420/libfdatetime/libfdatetime_filetime.h +0 -177
  1007. libexe-20240420/libfdatetime/libfdatetime_floatingtime.c +0 -1333
  1008. libexe-20240420/libfdatetime/libfdatetime_floatingtime.h +0 -168
  1009. libexe-20240420/libfdatetime/libfdatetime_hfs_time.c +0 -1329
  1010. libexe-20240420/libfdatetime/libfdatetime_hfs_time.h +0 -166
  1011. libexe-20240420/libfdatetime/libfdatetime_libcerror.h +0 -50
  1012. libexe-20240420/libfdatetime/libfdatetime_nsf_timedate.c +0 -1373
  1013. libexe-20240420/libfdatetime/libfdatetime_nsf_timedate.h +0 -177
  1014. libexe-20240420/libfdatetime/libfdatetime_posix_time.c +0 -1842
  1015. libexe-20240420/libfdatetime/libfdatetime_posix_time.h +0 -189
  1016. libexe-20240420/libfdatetime/libfdatetime_support.c +0 -41
  1017. libexe-20240420/libfdatetime/libfdatetime_support.h +0 -47
  1018. libexe-20240420/libfdatetime/libfdatetime_systemtime.c +0 -1779
  1019. libexe-20240420/libfdatetime/libfdatetime_systemtime.h +0 -180
  1020. libexe-20240420/libfdatetime/libfdatetime_types.h +0 -63
  1021. libexe-20240420/libfdatetime/libfdatetime_unused.h +0 -44
  1022. libexe-20240420/libuna/Makefile.in +0 -1259
  1023. libexe-20240420/libuna/libuna_base16_stream.c +0 -1511
  1024. libexe-20240420/libuna/libuna_base16_stream.h +0 -93
  1025. libexe-20240420/libuna/libuna_base32_stream.c +0 -3035
  1026. libexe-20240420/libuna/libuna_base32_stream.h +0 -131
  1027. libexe-20240420/libuna/libuna_base64_stream.c +0 -2832
  1028. libexe-20240420/libuna/libuna_base64_stream.h +0 -131
  1029. libexe-20240420/libuna/libuna_byte_stream.c +0 -633
  1030. libexe-20240420/libuna/libuna_byte_stream.h +0 -104
  1031. libexe-20240420/libuna/libuna_codepage_iso_8859_10.c +0 -73
  1032. libexe-20240420/libuna/libuna_codepage_iso_8859_10.h +0 -48
  1033. libexe-20240420/libuna/libuna_codepage_iso_8859_13.c +0 -81
  1034. libexe-20240420/libuna/libuna_codepage_iso_8859_13.h +0 -48
  1035. libexe-20240420/libuna/libuna_codepage_iso_8859_14.c +0 -66
  1036. libexe-20240420/libuna/libuna_codepage_iso_8859_14.h +0 -51
  1037. libexe-20240420/libuna/libuna_codepage_iso_8859_15.c +0 -46
  1038. libexe-20240420/libuna/libuna_codepage_iso_8859_15.h +0 -45
  1039. libexe-20240420/libuna/libuna_codepage_iso_8859_16.c +0 -78
  1040. libexe-20240420/libuna/libuna_codepage_iso_8859_16.h +0 -57
  1041. libexe-20240420/libuna/libuna_codepage_iso_8859_2.c +0 -82
  1042. libexe-20240420/libuna/libuna_codepage_iso_8859_2.h +0 -51
  1043. libexe-20240420/libuna/libuna_codepage_iso_8859_3.c +0 -79
  1044. libexe-20240420/libuna/libuna_codepage_iso_8859_3.h +0 -57
  1045. libexe-20240420/libuna/libuna_codepage_iso_8859_4.c +0 -80
  1046. libexe-20240420/libuna/libuna_codepage_iso_8859_4.h +0 -48
  1047. libexe-20240420/libuna/libuna_codepage_iso_8859_5.c +0 -62
  1048. libexe-20240420/libuna/libuna_codepage_iso_8859_5.h +0 -45
  1049. libexe-20240420/libuna/libuna_codepage_iso_8859_6.c +0 -58
  1050. libexe-20240420/libuna/libuna_codepage_iso_8859_6.h +0 -45
  1051. libexe-20240420/libuna/libuna_codepage_iso_8859_7.c +0 -66
  1052. libexe-20240420/libuna/libuna_codepage_iso_8859_7.h +0 -48
  1053. libexe-20240420/libuna/libuna_codepage_iso_8859_8.c +0 -61
  1054. libexe-20240420/libuna/libuna_codepage_iso_8859_8.h +0 -48
  1055. libexe-20240420/libuna/libuna_codepage_iso_8859_9.c +0 -50
  1056. libexe-20240420/libuna/libuna_codepage_iso_8859_9.h +0 -45
  1057. libexe-20240420/libuna/libuna_codepage_koi8_r.c +0 -392
  1058. libexe-20240420/libuna/libuna_codepage_koi8_r.h +0 -54
  1059. libexe-20240420/libuna/libuna_codepage_koi8_u.c +0 -424
  1060. libexe-20240420/libuna/libuna_codepage_koi8_u.h +0 -54
  1061. libexe-20240420/libuna/libuna_codepage_mac_arabic.c +0 -352
  1062. libexe-20240420/libuna/libuna_codepage_mac_arabic.h +0 -54
  1063. libexe-20240420/libuna/libuna_codepage_mac_celtic.c +0 -395
  1064. libexe-20240420/libuna/libuna_codepage_mac_celtic.h +0 -54
  1065. libexe-20240420/libuna/libuna_codepage_mac_centraleurroman.c +0 -319
  1066. libexe-20240420/libuna/libuna_codepage_mac_centraleurroman.h +0 -54
  1067. libexe-20240420/libuna/libuna_codepage_mac_croatian.c +0 -378
  1068. libexe-20240420/libuna/libuna_codepage_mac_croatian.h +0 -54
  1069. libexe-20240420/libuna/libuna_codepage_mac_cyrillic.c +0 -325
  1070. libexe-20240420/libuna/libuna_codepage_mac_cyrillic.h +0 -54
  1071. libexe-20240420/libuna/libuna_codepage_mac_dingbats.c +0 -347
  1072. libexe-20240420/libuna/libuna_codepage_mac_dingbats.h +0 -54
  1073. libexe-20240420/libuna/libuna_codepage_mac_farsi.c +0 -372
  1074. libexe-20240420/libuna/libuna_codepage_mac_farsi.h +0 -54
  1075. libexe-20240420/libuna/libuna_codepage_mac_gaelic.c +0 -437
  1076. libexe-20240420/libuna/libuna_codepage_mac_gaelic.h +0 -54
  1077. libexe-20240420/libuna/libuna_codepage_mac_greek.c +0 -305
  1078. libexe-20240420/libuna/libuna_codepage_mac_greek.h +0 -54
  1079. libexe-20240420/libuna/libuna_codepage_mac_icelandic.c +0 -381
  1080. libexe-20240420/libuna/libuna_codepage_mac_icelandic.h +0 -54
  1081. libexe-20240420/libuna/libuna_codepage_mac_inuit.c +0 -380
  1082. libexe-20240420/libuna/libuna_codepage_mac_inuit.h +0 -54
  1083. libexe-20240420/libuna/libuna_codepage_mac_roman.c +0 -387
  1084. libexe-20240420/libuna/libuna_codepage_mac_roman.h +0 -54
  1085. libexe-20240420/libuna/libuna_codepage_mac_romanian.c +0 -396
  1086. libexe-20240420/libuna/libuna_codepage_mac_romanian.h +0 -54
  1087. libexe-20240420/libuna/libuna_codepage_mac_russian.c +0 -317
  1088. libexe-20240420/libuna/libuna_codepage_mac_russian.h +0 -54
  1089. libexe-20240420/libuna/libuna_codepage_mac_symbol.c +0 -537
  1090. libexe-20240420/libuna/libuna_codepage_mac_symbol.h +0 -59
  1091. libexe-20240420/libuna/libuna_codepage_mac_thai.c +0 -330
  1092. libexe-20240420/libuna/libuna_codepage_mac_thai.h +0 -59
  1093. libexe-20240420/libuna/libuna_codepage_mac_turkish.c +0 -397
  1094. libexe-20240420/libuna/libuna_codepage_mac_turkish.h +0 -54
  1095. libexe-20240420/libuna/libuna_codepage_mac_ukrainian.c +0 -321
  1096. libexe-20240420/libuna/libuna_codepage_mac_ukrainian.h +0 -54
  1097. libexe-20240420/libuna/libuna_codepage_windows_1250.c +0 -313
  1098. libexe-20240420/libuna/libuna_codepage_windows_1250.h +0 -54
  1099. libexe-20240420/libuna/libuna_codepage_windows_1251.c +0 -301
  1100. libexe-20240420/libuna/libuna_codepage_windows_1251.h +0 -54
  1101. libexe-20240420/libuna/libuna_codepage_windows_1252.c +0 -287
  1102. libexe-20240420/libuna/libuna_codepage_windows_1252.h +0 -54
  1103. libexe-20240420/libuna/libuna_codepage_windows_1253.c +0 -291
  1104. libexe-20240420/libuna/libuna_codepage_windows_1253.h +0 -54
  1105. libexe-20240420/libuna/libuna_codepage_windows_1254.c +0 -348
  1106. libexe-20240420/libuna/libuna_codepage_windows_1254.h +0 -54
  1107. libexe-20240420/libuna/libuna_codepage_windows_1255.c +0 -328
  1108. libexe-20240420/libuna/libuna_codepage_windows_1255.h +0 -54
  1109. libexe-20240420/libuna/libuna_codepage_windows_1256.c +0 -372
  1110. libexe-20240420/libuna/libuna_codepage_windows_1256.h +0 -54
  1111. libexe-20240420/libuna/libuna_codepage_windows_1257.c +0 -303
  1112. libexe-20240420/libuna/libuna_codepage_windows_1257.h +0 -54
  1113. libexe-20240420/libuna/libuna_codepage_windows_1258.c +0 -349
  1114. libexe-20240420/libuna/libuna_codepage_windows_1258.h +0 -54
  1115. libexe-20240420/libuna/libuna_codepage_windows_874.c +0 -274
  1116. libexe-20240420/libuna/libuna_codepage_windows_874.h +0 -54
  1117. libexe-20240420/libuna/libuna_codepage_windows_932.c +0 -4913
  1118. libexe-20240420/libuna/libuna_codepage_windows_932.h +0 -59
  1119. libexe-20240420/libuna/libuna_codepage_windows_936.c +0 -7371
  1120. libexe-20240420/libuna/libuna_codepage_windows_936.h +0 -59
  1121. libexe-20240420/libuna/libuna_codepage_windows_949.c +0 -8168
  1122. libexe-20240420/libuna/libuna_codepage_windows_949.h +0 -59
  1123. libexe-20240420/libuna/libuna_codepage_windows_950.c +0 -6390
  1124. libexe-20240420/libuna/libuna_codepage_windows_950.h +0 -59
  1125. libexe-20240420/libuna/libuna_definitions.h +0 -436
  1126. libexe-20240420/libuna/libuna_error.c +0 -111
  1127. libexe-20240420/libuna/libuna_error.h +0 -74
  1128. libexe-20240420/libuna/libuna_extern.h +0 -46
  1129. libexe-20240420/libuna/libuna_libcerror.h +0 -50
  1130. libexe-20240420/libuna/libuna_scsu.c +0 -64
  1131. libexe-20240420/libuna/libuna_scsu.h +0 -45
  1132. libexe-20240420/libuna/libuna_support.c +0 -39
  1133. libexe-20240420/libuna/libuna_support.h +0 -49
  1134. libexe-20240420/libuna/libuna_types.h +0 -53
  1135. libexe-20240420/libuna/libuna_unicode_character.c +0 -5784
  1136. libexe-20240420/libuna/libuna_unicode_character.h +0 -260
  1137. libexe-20240420/libuna/libuna_unused.h +0 -44
  1138. libexe-20240420/libuna/libuna_url_stream.c +0 -584
  1139. libexe-20240420/libuna/libuna_url_stream.h +0 -71
  1140. libexe-20240420/libuna/libuna_utf16_stream.c +0 -815
  1141. libexe-20240420/libuna/libuna_utf16_stream.h +0 -109
  1142. libexe-20240420/libuna/libuna_utf16_string.c +0 -3950
  1143. libexe-20240420/libuna/libuna_utf16_string.h +0 -325
  1144. libexe-20240420/libuna/libuna_utf32_stream.c +0 -819
  1145. libexe-20240420/libuna/libuna_utf32_stream.h +0 -109
  1146. libexe-20240420/libuna/libuna_utf32_string.c +0 -3808
  1147. libexe-20240420/libuna/libuna_utf32_string.h +0 -321
  1148. libexe-20240420/libuna/libuna_utf7_stream.c +0 -628
  1149. libexe-20240420/libuna/libuna_utf7_stream.h +0 -98
  1150. libexe-20240420/libuna/libuna_utf8_stream.c +0 -748
  1151. libexe-20240420/libuna/libuna_utf8_stream.h +0 -105
  1152. libexe-20240420/libuna/libuna_utf8_string.c +0 -4092
  1153. libexe-20240420/libuna/libuna_utf8_string.h +0 -329
  1154. libexe-20240420/ltmain.sh +0 -11429
  1155. libexe-20240420/m4/common.m4 +0 -578
  1156. libexe-20240420/m4/libbfio.m4 +0 -422
  1157. libexe-20240420/m4/libcdata.m4 +0 -599
  1158. libexe-20240420/m4/libcerror.m4 +0 -237
  1159. libexe-20240420/m4/libcfile.m4 +0 -429
  1160. libexe-20240420/m4/libclocale.m4 +0 -291
  1161. libexe-20240420/m4/libcnotify.m4 +0 -209
  1162. libexe-20240420/m4/libcpath.m4 +0 -344
  1163. libexe-20240420/m4/libcsplit.m4 +0 -249
  1164. libexe-20240420/m4/libcthreads.m4 +0 -385
  1165. libexe-20240420/m4/libfcache.m4 +0 -266
  1166. libexe-20240420/m4/libfdata.m4 +0 -555
  1167. libexe-20240420/m4/libfdatetime.m4 +0 -560
  1168. libexe-20240420/m4/libtool.m4 +0 -8403
  1169. libexe-20240420/m4/libuna.m4 +0 -1044
  1170. libexe-20240420/m4/pthread.m4 +0 -196
  1171. libexe-20240420/m4/python.m4 +0 -208
  1172. libexe-20240420/m4/tests.m4 +0 -33
  1173. libexe-20240420/m4/types.m4 +0 -133
  1174. libexe-20240420/manuals/Makefile.am +0 -12
  1175. libexe-20240420/manuals/Makefile.in +0 -783
  1176. libexe-20240420/manuals/exeinfo.1 +0 -87
  1177. libexe-20240420/manuals/libexe.3 +0 -149
  1178. libexe-20240420/msvscpp/Makefile.in +0 -693
  1179. libexe-20240420/msvscpp/libexe.sln +0 -417
  1180. libexe-20240420/msvscpp/pyexe/pyexe.vcproj +0 -284
  1181. libexe-20240420/ossfuzz/Makefile.in +0 -901
  1182. libexe-20240420/ossfuzz/file_fuzzer.cc +0 -99
  1183. libexe-20240420/ossfuzz/ossfuzz_libbfio.h +0 -58
  1184. libexe-20240420/ossfuzz/ossfuzz_libexe.h +0 -30
  1185. libexe-20240420/po/Makevars +0 -45
  1186. libexe-20240420/pyexe/Makefile.am +0 -53
  1187. libexe-20240420/pyexe/Makefile.in +0 -1017
  1188. libexe-20240420/pyexe/pyexe.c +0 -678
  1189. libexe-20240420/pyexe/pyexe.h +0 -71
  1190. libexe-20240420/pyexe/pyexe_codepage.c +0 -138
  1191. libexe-20240420/pyexe/pyexe_codepage.h +0 -42
  1192. libexe-20240420/pyexe/pyexe_datetime.c +0 -691
  1193. libexe-20240420/pyexe/pyexe_datetime.h +0 -65
  1194. libexe-20240420/pyexe/pyexe_error.c +0 -422
  1195. libexe-20240420/pyexe/pyexe_error.h +0 -60
  1196. libexe-20240420/pyexe/pyexe_file.c +0 -1465
  1197. libexe-20240420/pyexe/pyexe_file.h +0 -125
  1198. libexe-20240420/pyexe/pyexe_file_object_io_handle.c +0 -1524
  1199. libexe-20240420/pyexe/pyexe_file_object_io_handle.h +0 -141
  1200. libexe-20240420/pyexe/pyexe_integer.c +0 -399
  1201. libexe-20240420/pyexe/pyexe_integer.h +0 -56
  1202. libexe-20240420/pyexe/pyexe_libbfio.h +0 -54
  1203. libexe-20240420/pyexe/pyexe_libcerror.h +0 -50
  1204. libexe-20240420/pyexe/pyexe_libclocale.h +0 -50
  1205. libexe-20240420/pyexe/pyexe_libexe.h +0 -30
  1206. libexe-20240420/pyexe/pyexe_python.h +0 -83
  1207. libexe-20240420/pyexe/pyexe_section.c +0 -1055
  1208. libexe-20240420/pyexe/pyexe_section.h +0 -106
  1209. libexe-20240420/pyexe/pyexe_sections.c +0 -452
  1210. libexe-20240420/pyexe/pyexe_sections.h +0 -95
  1211. libexe-20240420/pyexe/pyexe_unused.h +0 -44
  1212. libexe-20240420/pyproject.toml +0 -4
  1213. libexe-20240420/setup.cfg +0 -16
  1214. libexe-20240420/setup.cfg.in +0 -16
  1215. libexe-20240420/setup.py +0 -293
  1216. libexe-20240420/test-driver +0 -153
  1217. libexe-20240420/tests/Makefile.am +0 -337
  1218. libexe-20240420/tests/Makefile.in +0 -1822
  1219. libexe-20240420/tests/exe_test_coff_header.c +0 -313
  1220. libexe-20240420/tests/exe_test_coff_optional_header.c +0 -313
  1221. libexe-20240420/tests/exe_test_data_directory_descriptor.c +0 -56
  1222. libexe-20240420/tests/exe_test_debug_data.c +0 -416
  1223. libexe-20240420/tests/exe_test_error.c +0 -150
  1224. libexe-20240420/tests/exe_test_export_table.c +0 -416
  1225. libexe-20240420/tests/exe_test_file.c +0 -2054
  1226. libexe-20240420/tests/exe_test_functions.c +0 -562
  1227. libexe-20240420/tests/exe_test_functions.h +0 -66
  1228. libexe-20240420/tests/exe_test_getopt.c +0 -190
  1229. libexe-20240420/tests/exe_test_getopt.h +0 -68
  1230. libexe-20240420/tests/exe_test_import_table.c +0 -416
  1231. libexe-20240420/tests/exe_test_io_handle.c +0 -455
  1232. libexe-20240420/tests/exe_test_le_header.c +0 -313
  1233. libexe-20240420/tests/exe_test_libbfio.h +0 -58
  1234. libexe-20240420/tests/exe_test_libcerror.h +0 -50
  1235. libexe-20240420/tests/exe_test_libclocale.h +0 -50
  1236. libexe-20240420/tests/exe_test_libcnotify.h +0 -50
  1237. libexe-20240420/tests/exe_test_libexe.h +0 -30
  1238. libexe-20240420/tests/exe_test_libuna.h +0 -60
  1239. libexe-20240420/tests/exe_test_macros.h +0 -257
  1240. libexe-20240420/tests/exe_test_memory.c +0 -177
  1241. libexe-20240420/tests/exe_test_memory.h +0 -52
  1242. libexe-20240420/tests/exe_test_mz_header.c +0 -311
  1243. libexe-20240420/tests/exe_test_ne_header.c +0 -311
  1244. libexe-20240420/tests/exe_test_notify.c +0 -229
  1245. libexe-20240420/tests/exe_test_section.c +0 -152
  1246. libexe-20240420/tests/exe_test_section_descriptor.c +0 -435
  1247. libexe-20240420/tests/exe_test_section_io_handle.c +0 -124
  1248. libexe-20240420/tests/exe_test_support.c +0 -796
  1249. libexe-20240420/tests/exe_test_tools_info_handle.c +0 -299
  1250. libexe-20240420/tests/exe_test_tools_output.c +0 -105
  1251. libexe-20240420/tests/exe_test_tools_signal.c +0 -213
  1252. libexe-20240420/tests/exe_test_unused.h +0 -50
  1253. libexe-20240420/tests/pyexe_test_file.py +0 -198
  1254. libexe-20240420/tests/pyexe_test_support.py +0 -111
  1255. libexe-20240420/tests/test_exeinfo.sh +0 -146
  1256. libexe-20240420/tests/test_library.sh +0 -193
  1257. libexe-20240420/tests/test_manpage.sh +0 -98
  1258. libexe-20240420/tests/test_python_module.sh +0 -195
  1259. libexe-20240420/tests/test_runner.sh +0 -1148
  1260. libexe-20240420/tests/test_tools.sh +0 -193
  1261. {libexe-20240420 → libexe_python-20260705}/ABOUT-NLS +0 -0
  1262. {libexe-20240420 → libexe_python-20260705}/COPYING +0 -0
  1263. {libexe-20240420 → libexe_python-20260705}/COPYING.LESSER +0 -0
  1264. {libexe-20240420 → libexe_python-20260705}/ChangeLog +0 -0
  1265. {libexe-20240420 → libexe_python-20260705}/NEWS +0 -0
  1266. {libexe-20240420 → libexe_python-20260705}/common/Makefile.am +0 -0
  1267. {libexe-20240420 → libexe_python-20260705}/compile +0 -0
  1268. {libexe-20240420 → libexe_python-20260705}/config.rpath +0 -0
  1269. {libexe-20240420 → libexe_python-20260705}/depcomp +0 -0
  1270. {libexe-20240420 → libexe_python-20260705}/dpkg/changelog.in +0 -0
  1271. {libexe-20240420 → libexe_python-20260705}/dpkg/libexe-dev.install +0 -0
  1272. {libexe-20240420 → libexe_python-20260705}/dpkg/libexe-python3.install +0 -0
  1273. {libexe-20240420 → libexe_python-20260705}/dpkg/libexe-tools.install +0 -0
  1274. {libexe-20240420 → libexe_python-20260705}/dpkg/libexe.install +0 -0
  1275. {libexe-20240420 → libexe_python-20260705}/dpkg/source/format +0 -0
  1276. {libexe-20240420 → libexe_python-20260705}/include/Makefile.am +0 -0
  1277. {libexe-20240420 → libexe_python-20260705}/install-sh +0 -0
  1278. {libexe-20240420 → libexe_python-20260705}/libbfio/Makefile.am +0 -0
  1279. {libexe-20240420 → libexe_python-20260705}/libcdata/Makefile.am +0 -0
  1280. {libexe-20240420 → libexe_python-20260705}/libcerror/Makefile.am +0 -0
  1281. {libexe-20240420 → libexe_python-20260705}/libcfile/Makefile.am +0 -0
  1282. {libexe-20240420 → libexe_python-20260705}/libclocale/Makefile.am +0 -0
  1283. {libexe-20240420 → libexe_python-20260705}/libcnotify/Makefile.am +0 -0
  1284. {libexe-20240420 → libexe_python-20260705}/libcpath/Makefile.am +0 -0
  1285. {libexe-20240420 → libexe_python-20260705}/libcsplit/Makefile.am +0 -0
  1286. {libexe-20240420 → libexe_python-20260705}/libcthreads/Makefile.am +0 -0
  1287. {libexe-20240420 → libexe_python-20260705}/libexe/Makefile.am +0 -0
  1288. {libexe-20240420 → libexe_python-20260705}/libexe.pc.in +0 -0
  1289. {libexe-20240420 → libexe_python-20260705}/libexe.spec.in +0 -0
  1290. {libexe-20240420 → libexe_python-20260705}/libfcache/Makefile.am +0 -0
  1291. {libexe-20240420 → libexe_python-20260705}/libfdata/Makefile.am +0 -0
  1292. {libexe-20240420 → libexe_python-20260705}/libfdatetime/Makefile.am +0 -0
  1293. {libexe-20240420 → libexe_python-20260705}/libuna/Makefile.am +0 -0
  1294. {libexe-20240420 → libexe_python-20260705}/m4/gettext.m4 +0 -0
  1295. {libexe-20240420 → libexe_python-20260705}/m4/host-cpu-c-abi.m4 +0 -0
  1296. {libexe-20240420 → libexe_python-20260705}/m4/iconv.m4 +0 -0
  1297. {libexe-20240420 → libexe_python-20260705}/m4/intlmacosx.m4 +0 -0
  1298. {libexe-20240420 → libexe_python-20260705}/m4/lib-ld.m4 +0 -0
  1299. {libexe-20240420 → libexe_python-20260705}/m4/lib-link.m4 +0 -0
  1300. {libexe-20240420 → libexe_python-20260705}/m4/lib-prefix.m4 +0 -0
  1301. {libexe-20240420 → libexe_python-20260705}/m4/nls.m4 +0 -0
  1302. {libexe-20240420 → libexe_python-20260705}/m4/po.m4 +0 -0
  1303. {libexe-20240420 → libexe_python-20260705}/m4/progtest.m4 +0 -0
  1304. {libexe-20240420 → libexe_python-20260705}/missing +0 -0
  1305. {libexe-20240420 → libexe_python-20260705}/msvscpp/Makefile.am +0 -0
  1306. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_coff_header/exe_test_coff_header.vcproj +0 -0
  1307. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_coff_optional_header/exe_test_coff_optional_header.vcproj +0 -0
  1308. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_data_directory_descriptor/exe_test_data_directory_descriptor.vcproj +0 -0
  1309. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_debug_data/exe_test_debug_data.vcproj +0 -0
  1310. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_error/exe_test_error.vcproj +0 -0
  1311. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_export_table/exe_test_export_table.vcproj +0 -0
  1312. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_file/exe_test_file.vcproj +0 -0
  1313. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_import_table/exe_test_import_table.vcproj +0 -0
  1314. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_io_handle/exe_test_io_handle.vcproj +0 -0
  1315. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_le_header/exe_test_le_header.vcproj +0 -0
  1316. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_mz_header/exe_test_mz_header.vcproj +0 -0
  1317. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_ne_header/exe_test_ne_header.vcproj +0 -0
  1318. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_notify/exe_test_notify.vcproj +0 -0
  1319. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_section/exe_test_section.vcproj +0 -0
  1320. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_section_descriptor/exe_test_section_descriptor.vcproj +0 -0
  1321. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_section_io_handle/exe_test_section_io_handle.vcproj +0 -0
  1322. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_support/exe_test_support.vcproj +0 -0
  1323. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_tools_info_handle/exe_test_tools_info_handle.vcproj +0 -0
  1324. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_tools_output/exe_test_tools_output.vcproj +0 -0
  1325. {libexe-20240420 → libexe_python-20260705}/msvscpp/exe_test_tools_signal/exe_test_tools_signal.vcproj +0 -0
  1326. {libexe-20240420 → libexe_python-20260705}/msvscpp/exeinfo/exeinfo.vcproj +0 -0
  1327. {libexe-20240420 → libexe_python-20260705}/msvscpp/libbfio/libbfio.vcproj +0 -0
  1328. {libexe-20240420 → libexe_python-20260705}/msvscpp/libcdata/libcdata.vcproj +0 -0
  1329. {libexe-20240420 → libexe_python-20260705}/msvscpp/libcerror/libcerror.vcproj +0 -0
  1330. {libexe-20240420 → libexe_python-20260705}/msvscpp/libcfile/libcfile.vcproj +0 -0
  1331. {libexe-20240420 → libexe_python-20260705}/msvscpp/libclocale/libclocale.vcproj +0 -0
  1332. {libexe-20240420 → libexe_python-20260705}/msvscpp/libcnotify/libcnotify.vcproj +0 -0
  1333. {libexe-20240420 → libexe_python-20260705}/msvscpp/libcpath/libcpath.vcproj +0 -0
  1334. {libexe-20240420 → libexe_python-20260705}/msvscpp/libcsplit/libcsplit.vcproj +0 -0
  1335. {libexe-20240420 → libexe_python-20260705}/msvscpp/libcthreads/libcthreads.vcproj +0 -0
  1336. {libexe-20240420 → libexe_python-20260705}/msvscpp/libexe/libexe.vcproj +0 -0
  1337. {libexe-20240420 → libexe_python-20260705}/msvscpp/libfcache/libfcache.vcproj +0 -0
  1338. {libexe-20240420 → libexe_python-20260705}/msvscpp/libfdata/libfdata.vcproj +0 -0
  1339. {libexe-20240420 → libexe_python-20260705}/msvscpp/libfdatetime/libfdatetime.vcproj +0 -0
  1340. {libexe-20240420 → libexe_python-20260705}/msvscpp/libuna/libuna.vcproj +0 -0
  1341. {libexe-20240420 → libexe_python-20260705}/ossfuzz/Makefile.am +0 -0
  1342. {libexe-20240420 → libexe_python-20260705}/po/ChangeLog +0 -0
  1343. {libexe-20240420 → libexe_python-20260705}/po/Makefile.in.in +0 -0
  1344. {libexe-20240420 → libexe_python-20260705}/po/Makevars.in +0 -0
  1345. {libexe-20240420 → libexe_python-20260705}/po/POTFILES.in +0 -0
  1346. {libexe-20240420 → libexe_python-20260705}/po/Rules-quot +0 -0
  1347. {libexe-20240420 → libexe_python-20260705}/po/boldquot.sed +0 -0
  1348. {libexe-20240420 → libexe_python-20260705}/po/en@boldquot.header +0 -0
  1349. {libexe-20240420 → libexe_python-20260705}/po/en@quot.header +0 -0
  1350. {libexe-20240420 → libexe_python-20260705}/po/insert-header.sin +0 -0
  1351. {libexe-20240420 → libexe_python-20260705}/po/quot.sed +0 -0
  1352. {libexe-20240420 → libexe_python-20260705}/po/remove-potcdate.sin +0 -0
@@ -0,0 +1,4 @@
1
+ Acknowledgements: libexe
2
+
3
+ Copyright (C) 2011-2026, Joachim Metz <joachim.metz@gmail.com>
4
+
File without changes
@@ -0,0 +1,104 @@
1
+ ACLOCAL_AMFLAGS = -I m4
2
+
3
+ SUBDIRS = \
4
+ include \
5
+ common \
6
+ libcerror \
7
+ libcthreads \
8
+ libcdata \
9
+ libclocale \
10
+ libcnotify \
11
+ libcsplit \
12
+ libuna \
13
+ libcfile \
14
+ libcpath \
15
+ libbfio \
16
+ libfcache \
17
+ libfdata \
18
+ libfdatetime \
19
+ libexe \
20
+ exetools \
21
+ pyexe \
22
+ po \
23
+ manuals \
24
+ tests \
25
+ ossfuzz \
26
+ msvscpp
27
+
28
+ DPKG_FILES = \
29
+ dpkg/changelog \
30
+ dpkg/changelog.in \
31
+ dpkg/compat \
32
+ dpkg/control \
33
+ dpkg/copyright \
34
+ dpkg/rules \
35
+ dpkg/libexe.install \
36
+ dpkg/libexe-dev.install \
37
+ dpkg/libexe-python3.install \
38
+ dpkg/libexe-tools.install \
39
+ dpkg/source/format
40
+
41
+ GETTEXT_FILES = \
42
+ config.rpath \
43
+ po/Makevars.in
44
+
45
+ PKGCONFIG_FILES = \
46
+ libexe.pc.in
47
+
48
+ SETUP_PY_FILES = \
49
+ _build.py \
50
+ pyproject.toml \
51
+ pyproject.toml.in
52
+
53
+ SPEC_FILES = \
54
+ libexe.spec \
55
+ libexe.spec.in
56
+
57
+ EXTRA_DIST = \
58
+ $(DPKG_FILES) \
59
+ $(GETTEXT_FILES) \
60
+ $(PKGCONFIG_FILES) \
61
+ $(SETUP_PY_FILES) \
62
+ $(SPEC_FILES)
63
+
64
+ DISTCLEANFILES = \
65
+ config.status \
66
+ config.cache \
67
+ config.log \
68
+ libexe.pc \
69
+ libexe.spec \
70
+ Makefile \
71
+ Makefile.in \
72
+ po/Makevars
73
+
74
+ pkgconfigdir = $(libdir)/pkgconfig
75
+
76
+ pkgconfig_DATA = \
77
+ libexe.pc
78
+
79
+ check-build: all
80
+ cd $(srcdir)/tests && $(MAKE) check-build $(AM_MAKEFLAGS)
81
+
82
+ libtool: @LIBTOOL_DEPS@
83
+ cd $(srcdir) && $(SHELL) ./config.status --recheck
84
+
85
+ lib: library
86
+
87
+ library:
88
+ (cd $(srcdir)/common && $(MAKE) $(AM_MAKEFLAGS))
89
+ (cd $(srcdir)/libcerror && $(MAKE) $(AM_MAKEFLAGS))
90
+ (cd $(srcdir)/libcthreads && $(MAKE) $(AM_MAKEFLAGS))
91
+ (cd $(srcdir)/libcdata && $(MAKE) $(AM_MAKEFLAGS))
92
+ (cd $(srcdir)/libclocale && $(MAKE) $(AM_MAKEFLAGS))
93
+ (cd $(srcdir)/libcnotify && $(MAKE) $(AM_MAKEFLAGS))
94
+ (cd $(srcdir)/libcsplit && $(MAKE) $(AM_MAKEFLAGS))
95
+ (cd $(srcdir)/libuna && $(MAKE) $(AM_MAKEFLAGS))
96
+ (cd $(srcdir)/libcfile && $(MAKE) $(AM_MAKEFLAGS))
97
+ (cd $(srcdir)/libcpath && $(MAKE) $(AM_MAKEFLAGS))
98
+ (cd $(srcdir)/libbfio && $(MAKE) $(AM_MAKEFLAGS))
99
+ (cd $(srcdir)/libfcache && $(MAKE) $(AM_MAKEFLAGS))
100
+ (cd $(srcdir)/libfdata && $(MAKE) $(AM_MAKEFLAGS))
101
+ (cd $(srcdir)/libfdatetime && $(MAKE) $(AM_MAKEFLAGS))
102
+ (cd $(srcdir)/libexe && $(MAKE) $(AM_MAKEFLAGS))
103
+ (cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS))
104
+