libfsxfs-python 20240222__tar.gz → 20260701__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.
- libfsxfs_python-20260701/AUTHORS +4 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/INSTALL +0 -0
- libfsxfs_python-20260701/Makefile.am +107 -0
- libfsxfs_python-20260701/Makefile.in +1241 -0
- libfsxfs_python-20260701/PKG-INFO +38 -0
- libfsxfs_python-20260701/README +21 -0
- libfsxfs_python-20260701/_build.py +275 -0
- libfsxfs_python-20260701/acinclude.m4 +36 -0
- libfsxfs_python-20260701/aclocal.m4 +1550 -0
- libfsxfs_python-20260701/common/Makefile.am +24 -0
- libfsxfs_python-20260701/common/Makefile.in +805 -0
- libfsxfs_python-20260701/common/byte_stream.h +312 -0
- libfsxfs_python-20260701/common/common.h +43 -0
- libfsxfs_python-20260701/common/config.h +671 -0
- libfsxfs_python-20260701/common/config.h.in +670 -0
- libfsxfs_python-20260701/common/config_borlandc.h +26 -0
- libfsxfs_python-20260701/common/config_msc.h +34 -0
- libfsxfs_python-20260701/common/config_winapi.h +97 -0
- libfsxfs_python-20260701/common/file_stream.h +151 -0
- libfsxfs_python-20260701/common/memory.h +129 -0
- libfsxfs_python-20260701/common/narrow_string.h +187 -0
- libfsxfs_python-20260701/common/system_string.h +154 -0
- libfsxfs_python-20260701/common/types.h +392 -0
- libfsxfs_python-20260701/common/types.h.in +392 -0
- libfsxfs_python-20260701/common/wide_string.h +175 -0
- libfsxfs_python-20260701/config.guess +1754 -0
- libfsxfs_python-20260701/config.sub +1890 -0
- libfsxfs_python-20260701/configure +65970 -0
- libfsxfs_python-20260701/configure.ac +262 -0
- libfsxfs_python-20260701/dpkg/changelog +5 -0
- libfsxfs_python-20260701/dpkg/compat +1 -0
- libfsxfs_python-20260701/dpkg/control +65 -0
- libfsxfs_python-20260701/dpkg/copyright +25 -0
- libfsxfs_python-20260701/dpkg/rules +31 -0
- libfsxfs_python-20260701/fsxfstools/Makefile.am +114 -0
- libfsxfs_python-20260701/fsxfstools/Makefile.in +1059 -0
- libfsxfs_python-20260701/fsxfstools/digest_hash.c +129 -0
- libfsxfs_python-20260701/fsxfstools/digest_hash.h +46 -0
- libfsxfs_python-20260701/fsxfstools/fsxfsinfo.c +507 -0
- libfsxfs_python-20260701/fsxfstools/fsxfsmount.c +696 -0
- libfsxfs_python-20260701/fsxfstools/fsxfstools_getopt.c +572 -0
- libfsxfs_python-20260701/fsxfstools/fsxfstools_getopt.h +106 -0
- libfsxfs_python-20260701/fsxfstools/fsxfstools_i18n.h +48 -0
- libfsxfs_python-20260701/fsxfstools/fsxfstools_libbfio.h +58 -0
- libfsxfs_python-20260701/fsxfstools/fsxfstools_libcerror.h +50 -0
- libfsxfs_python-20260701/fsxfstools/fsxfstools_libclocale.h +50 -0
- libfsxfs_python-20260701/fsxfstools/fsxfstools_libcnotify.h +50 -0
- libfsxfs_python-20260701/fsxfstools/fsxfstools_libcpath.h +48 -0
- libfsxfs_python-20260701/fsxfstools/fsxfstools_libfcache.h +50 -0
- libfsxfs_python-20260701/fsxfstools/fsxfstools_libfdata.h +54 -0
- libfsxfs_python-20260701/fsxfstools/fsxfstools_libfdatetime.h +56 -0
- libfsxfs_python-20260701/fsxfstools/fsxfstools_libfsxfs.h +30 -0
- libfsxfs_python-20260701/fsxfstools/fsxfstools_libhmac.h +51 -0
- libfsxfs_python-20260701/fsxfstools/fsxfstools_libuna.h +60 -0
- libfsxfs_python-20260701/fsxfstools/fsxfstools_output.c +187 -0
- libfsxfs_python-20260701/fsxfstools/fsxfstools_output.h +55 -0
- libfsxfs_python-20260701/fsxfstools/fsxfstools_signal.c +262 -0
- libfsxfs_python-20260701/fsxfstools/fsxfstools_signal.h +72 -0
- libfsxfs_python-20260701/fsxfstools/fsxfstools_unused.h +50 -0
- libfsxfs_python-20260701/fsxfstools/info_handle.c +2969 -0
- libfsxfs_python-20260701/fsxfstools/info_handle.h +186 -0
- libfsxfs_python-20260701/fsxfstools/mount_dokan.c +1575 -0
- libfsxfs_python-20260701/fsxfstools/mount_dokan.h +181 -0
- libfsxfs_python-20260701/fsxfstools/mount_file_entry.c +985 -0
- libfsxfs_python-20260701/fsxfstools/mount_file_entry.h +139 -0
- libfsxfs_python-20260701/fsxfstools/mount_file_system.c +595 -0
- libfsxfs_python-20260701/fsxfstools/mount_file_system.h +94 -0
- libfsxfs_python-20260701/fsxfstools/mount_fuse.c +1977 -0
- libfsxfs_python-20260701/fsxfstools/mount_fuse.h +180 -0
- libfsxfs_python-20260701/fsxfstools/mount_handle.c +897 -0
- libfsxfs_python-20260701/fsxfstools/mount_handle.h +138 -0
- libfsxfs_python-20260701/fsxfstools/mount_path_string.c +801 -0
- libfsxfs_python-20260701/fsxfstools/mount_path_string.h +59 -0
- libfsxfs_python-20260701/include/Makefile.am +25 -0
- libfsxfs_python-20260701/include/Makefile.in +867 -0
- libfsxfs_python-20260701/include/libfsxfs/codepage.h +122 -0
- libfsxfs_python-20260701/include/libfsxfs/definitions.h +80 -0
- libfsxfs_python-20260701/include/libfsxfs/definitions.h.in +80 -0
- libfsxfs_python-20260701/include/libfsxfs/error.h +291 -0
- libfsxfs_python-20260701/include/libfsxfs/extern.h +47 -0
- libfsxfs_python-20260701/include/libfsxfs/features.h +50 -0
- libfsxfs_python-20260701/include/libfsxfs/features.h.in +50 -0
- libfsxfs_python-20260701/include/libfsxfs/types.h +213 -0
- libfsxfs_python-20260701/include/libfsxfs/types.h.in +213 -0
- libfsxfs_python-20260701/include/libfsxfs.h +882 -0
- libfsxfs_python-20260701/include/libfsxfs.h.in +882 -0
- libfsxfs_python-20260701/libbfio/Makefile.am +54 -0
- libfsxfs_python-20260701/libbfio/Makefile.in +968 -0
- libfsxfs_python-20260701/libbfio/libbfio_codepage.h +90 -0
- libfsxfs_python-20260701/libbfio/libbfio_definitions.h +89 -0
- libfsxfs_python-20260701/libbfio/libbfio_error.c +111 -0
- libfsxfs_python-20260701/libbfio/libbfio_error.h +74 -0
- libfsxfs_python-20260701/libbfio/libbfio_extern.h +53 -0
- libfsxfs_python-20260701/libbfio/libbfio_file.c +444 -0
- libfsxfs_python-20260701/libbfio/libbfio_file.h +90 -0
- libfsxfs_python-20260701/libbfio/libbfio_file_io_handle.c +1198 -0
- libfsxfs_python-20260701/libbfio/libbfio_file_io_handle.h +152 -0
- libfsxfs_python-20260701/libbfio/libbfio_file_pool.c +494 -0
- libfsxfs_python-20260701/libbfio/libbfio_file_pool.h +81 -0
- libfsxfs_python-20260701/libbfio/libbfio_file_range.c +468 -0
- libfsxfs_python-20260701/libbfio/libbfio_file_range.h +104 -0
- libfsxfs_python-20260701/libbfio/libbfio_file_range_io_handle.c +1158 -0
- libfsxfs_python-20260701/libbfio/libbfio_file_range_io_handle.h +160 -0
- libfsxfs_python-20260701/libbfio/libbfio_handle.c +2708 -0
- libfsxfs_python-20260701/libbfio/libbfio_handle.h +363 -0
- libfsxfs_python-20260701/libbfio/libbfio_libcdata.h +54 -0
- libfsxfs_python-20260701/libbfio/libbfio_libcerror.h +50 -0
- libfsxfs_python-20260701/libbfio/libbfio_libcfile.h +50 -0
- libfsxfs_python-20260701/libbfio/libbfio_libclocale.h +50 -0
- libfsxfs_python-20260701/libbfio/libbfio_libcpath.h +48 -0
- libfsxfs_python-20260701/libbfio/libbfio_libcthreads.h +64 -0
- libfsxfs_python-20260701/libbfio/libbfio_libuna.h +60 -0
- libfsxfs_python-20260701/libbfio/libbfio_memory_range.c +205 -0
- libfsxfs_python-20260701/libbfio/libbfio_memory_range.h +60 -0
- libfsxfs_python-20260701/libbfio/libbfio_memory_range_io_handle.c +871 -0
- libfsxfs_python-20260701/libbfio/libbfio_memory_range_io_handle.h +129 -0
- libfsxfs_python-20260701/libbfio/libbfio_pool.c +3523 -0
- libfsxfs_python-20260701/libbfio/libbfio_pool.h +275 -0
- libfsxfs_python-20260701/libbfio/libbfio_support.c +93 -0
- libfsxfs_python-20260701/libbfio/libbfio_support.h +58 -0
- libfsxfs_python-20260701/libbfio/libbfio_system_string.c +1017 -0
- libfsxfs_python-20260701/libbfio/libbfio_system_string.h +95 -0
- libfsxfs_python-20260701/libbfio/libbfio_types.h +49 -0
- libfsxfs_python-20260701/libbfio/libbfio_unused.h +44 -0
- libfsxfs_python-20260701/libcdata/Makefile.am +40 -0
- libfsxfs_python-20260701/libcdata/Makefile.in +947 -0
- libfsxfs_python-20260701/libcdata/libcdata_array.c +2015 -0
- libfsxfs_python-20260701/libcdata/libcdata_array.h +200 -0
- libfsxfs_python-20260701/libcdata/libcdata_btree.c +964 -0
- libfsxfs_python-20260701/libcdata/libcdata_btree.h +141 -0
- libfsxfs_python-20260701/libcdata/libcdata_btree_node.c +1607 -0
- libfsxfs_python-20260701/libcdata/libcdata_btree_node.h +101 -0
- libfsxfs_python-20260701/libcdata/libcdata_btree_values_list.c +217 -0
- libfsxfs_python-20260701/libcdata/libcdata_btree_values_list.h +55 -0
- libfsxfs_python-20260701/libcdata/libcdata_definitions.h +81 -0
- libfsxfs_python-20260701/libcdata/libcdata_error.c +111 -0
- libfsxfs_python-20260701/libcdata/libcdata_error.h +74 -0
- libfsxfs_python-20260701/libcdata/libcdata_extern.h +53 -0
- libfsxfs_python-20260701/libcdata/libcdata_libcerror.h +50 -0
- libfsxfs_python-20260701/libcdata/libcdata_libcthreads.h +64 -0
- libfsxfs_python-20260701/libcdata/libcdata_list.c +2906 -0
- libfsxfs_python-20260701/libcdata/libcdata_list.h +235 -0
- libfsxfs_python-20260701/libcdata/libcdata_list_element.c +926 -0
- libfsxfs_python-20260701/libcdata/libcdata_list_element.h +142 -0
- libfsxfs_python-20260701/libcdata/libcdata_range_list.c +4922 -0
- libfsxfs_python-20260701/libcdata/libcdata_range_list.h +382 -0
- libfsxfs_python-20260701/libcdata/libcdata_range_list_value.c +429 -0
- libfsxfs_python-20260701/libcdata/libcdata_range_list_value.h +100 -0
- libfsxfs_python-20260701/libcdata/libcdata_support.c +39 -0
- libfsxfs_python-20260701/libcdata/libcdata_support.h +47 -0
- libfsxfs_python-20260701/libcdata/libcdata_tree_node.c +4271 -0
- libfsxfs_python-20260701/libcdata/libcdata_tree_node.h +308 -0
- libfsxfs_python-20260701/libcdata/libcdata_types.h +57 -0
- libfsxfs_python-20260701/libcdata/libcdata_unused.h +44 -0
- libfsxfs_python-20260701/libcerror/Makefile.am +27 -0
- libfsxfs_python-20260701/libcerror/Makefile.in +889 -0
- libfsxfs_python-20260701/libcerror/libcerror_definitions.h +326 -0
- libfsxfs_python-20260701/libcerror/libcerror_error.c +827 -0
- libfsxfs_python-20260701/libcerror/libcerror_error.h +125 -0
- libfsxfs_python-20260701/libcerror/libcerror_extern.h +53 -0
- libfsxfs_python-20260701/libcerror/libcerror_support.c +39 -0
- libfsxfs_python-20260701/libcerror/libcerror_support.h +47 -0
- libfsxfs_python-20260701/libcerror/libcerror_system.c +569 -0
- libfsxfs_python-20260701/libcerror/libcerror_system.h +78 -0
- libfsxfs_python-20260701/libcerror/libcerror_types.h +51 -0
- libfsxfs_python-20260701/libcerror/libcerror_unused.h +44 -0
- libfsxfs_python-20260701/libcfile/Makefile.am +38 -0
- libfsxfs_python-20260701/libcfile/Makefile.in +916 -0
- libfsxfs_python-20260701/libcfile/libcfile_definitions.h +101 -0
- libfsxfs_python-20260701/libcfile/libcfile_error.c +111 -0
- libfsxfs_python-20260701/libcfile/libcfile_error.h +74 -0
- libfsxfs_python-20260701/libcfile/libcfile_extern.h +53 -0
- libfsxfs_python-20260701/libcfile/libcfile_file.c +4831 -0
- libfsxfs_python-20260701/libcfile/libcfile_file.h +273 -0
- libfsxfs_python-20260701/libcfile/libcfile_libcerror.h +50 -0
- libfsxfs_python-20260701/libcfile/libcfile_libclocale.h +50 -0
- libfsxfs_python-20260701/libcfile/libcfile_libcnotify.h +50 -0
- libfsxfs_python-20260701/libcfile/libcfile_libuna.h +60 -0
- libfsxfs_python-20260701/libcfile/libcfile_notify.c +120 -0
- libfsxfs_python-20260701/libcfile/libcfile_notify.h +63 -0
- libfsxfs_python-20260701/libcfile/libcfile_support.c +1171 -0
- libfsxfs_python-20260701/libcfile/libcfile_support.h +98 -0
- libfsxfs_python-20260701/libcfile/libcfile_system_string.c +1017 -0
- libfsxfs_python-20260701/libcfile/libcfile_system_string.h +95 -0
- libfsxfs_python-20260701/libcfile/libcfile_types.h +47 -0
- libfsxfs_python-20260701/libcfile/libcfile_unused.h +44 -0
- libfsxfs_python-20260701/libcfile/libcfile_winapi.c +815 -0
- libfsxfs_python-20260701/libcfile/libcfile_winapi.h +122 -0
- libfsxfs_python-20260701/libclocale/Makefile.am +30 -0
- libfsxfs_python-20260701/libclocale/Makefile.in +899 -0
- libfsxfs_python-20260701/libclocale/libclocale_codepage.c +950 -0
- libfsxfs_python-20260701/libclocale/libclocale_codepage.h +73 -0
- libfsxfs_python-20260701/libclocale/libclocale_definitions.h +106 -0
- libfsxfs_python-20260701/libclocale/libclocale_extern.h +53 -0
- libfsxfs_python-20260701/libclocale/libclocale_libcerror.h +50 -0
- libfsxfs_python-20260701/libclocale/libclocale_locale.c +494 -0
- libfsxfs_python-20260701/libclocale/libclocale_locale.h +66 -0
- libfsxfs_python-20260701/libclocale/libclocale_support.c +130 -0
- libfsxfs_python-20260701/libclocale/libclocale_support.h +55 -0
- libfsxfs_python-20260701/libclocale/libclocale_unused.h +44 -0
- libfsxfs_python-20260701/libclocale/libclocale_wide_string.c +69 -0
- libfsxfs_python-20260701/libclocale/libclocale_wide_string.h +54 -0
- libfsxfs_python-20260701/libcnotify/Makefile.am +29 -0
- libfsxfs_python-20260701/libcnotify/Makefile.in +897 -0
- libfsxfs_python-20260701/libcnotify/libcnotify_definitions.h +54 -0
- libfsxfs_python-20260701/libcnotify/libcnotify_extern.h +53 -0
- libfsxfs_python-20260701/libcnotify/libcnotify_libcerror.h +50 -0
- libfsxfs_python-20260701/libcnotify/libcnotify_print.c +386 -0
- libfsxfs_python-20260701/libcnotify/libcnotify_print.h +68 -0
- libfsxfs_python-20260701/libcnotify/libcnotify_stream.c +182 -0
- libfsxfs_python-20260701/libcnotify/libcnotify_stream.h +59 -0
- libfsxfs_python-20260701/libcnotify/libcnotify_support.c +39 -0
- libfsxfs_python-20260701/libcnotify/libcnotify_support.h +49 -0
- libfsxfs_python-20260701/libcnotify/libcnotify_unused.h +44 -0
- libfsxfs_python-20260701/libcnotify/libcnotify_verbose.c +38 -0
- libfsxfs_python-20260701/libcnotify/libcnotify_verbose.h +46 -0
- libfsxfs_python-20260701/libcpath/Makefile.am +35 -0
- libfsxfs_python-20260701/libcpath/Makefile.in +901 -0
- libfsxfs_python-20260701/libcpath/libcpath_definitions.h +79 -0
- libfsxfs_python-20260701/libcpath/libcpath_error.c +111 -0
- libfsxfs_python-20260701/libcpath/libcpath_error.h +74 -0
- libfsxfs_python-20260701/libcpath/libcpath_extern.h +53 -0
- libfsxfs_python-20260701/libcpath/libcpath_libcerror.h +50 -0
- libfsxfs_python-20260701/libcpath/libcpath_libclocale.h +50 -0
- libfsxfs_python-20260701/libcpath/libcpath_libcsplit.h +52 -0
- libfsxfs_python-20260701/libcpath/libcpath_libuna.h +60 -0
- libfsxfs_python-20260701/libcpath/libcpath_path.c +7508 -0
- libfsxfs_python-20260701/libcpath/libcpath_path.h +293 -0
- libfsxfs_python-20260701/libcpath/libcpath_support.c +93 -0
- libfsxfs_python-20260701/libcpath/libcpath_support.h +58 -0
- libfsxfs_python-20260701/libcpath/libcpath_system_string.c +1017 -0
- libfsxfs_python-20260701/libcpath/libcpath_system_string.h +95 -0
- libfsxfs_python-20260701/libcpath/libcpath_unused.h +44 -0
- libfsxfs_python-20260701/libcsplit/Makefile.am +32 -0
- libfsxfs_python-20260701/libcsplit/Makefile.in +914 -0
- libfsxfs_python-20260701/libcsplit/libcsplit_definitions.h +47 -0
- libfsxfs_python-20260701/libcsplit/libcsplit_error.c +111 -0
- libfsxfs_python-20260701/libcsplit/libcsplit_error.h +74 -0
- libfsxfs_python-20260701/libcsplit/libcsplit_extern.h +53 -0
- libfsxfs_python-20260701/libcsplit/libcsplit_libcerror.h +50 -0
- libfsxfs_python-20260701/libcsplit/libcsplit_narrow_split_string.c +547 -0
- libfsxfs_python-20260701/libcsplit/libcsplit_narrow_split_string.h +107 -0
- libfsxfs_python-20260701/libcsplit/libcsplit_narrow_string.c +288 -0
- libfsxfs_python-20260701/libcsplit/libcsplit_narrow_string.h +49 -0
- libfsxfs_python-20260701/libcsplit/libcsplit_support.c +39 -0
- libfsxfs_python-20260701/libcsplit/libcsplit_support.h +47 -0
- libfsxfs_python-20260701/libcsplit/libcsplit_types.h +49 -0
- libfsxfs_python-20260701/libcsplit/libcsplit_unused.h +44 -0
- libfsxfs_python-20260701/libcsplit/libcsplit_wide_split_string.c +551 -0
- libfsxfs_python-20260701/libcsplit/libcsplit_wide_split_string.h +111 -0
- libfsxfs_python-20260701/libcsplit/libcsplit_wide_string.c +292 -0
- libfsxfs_python-20260701/libcsplit/libcsplit_wide_string.h +53 -0
- libfsxfs_python-20260701/libcthreads/Makefile.am +38 -0
- libfsxfs_python-20260701/libcthreads/Makefile.in +949 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_condition.c +735 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_condition.h +120 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_definitions.h +84 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_error.c +111 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_error.h +74 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_extern.h +53 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_libcerror.h +50 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_lock.c +391 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_lock.h +88 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_mutex.c +601 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_mutex.h +98 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_queue.c +1150 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_queue.h +136 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_read_write_lock.c +690 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_read_write_lock.h +119 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_repeating_thread.c +683 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_repeating_thread.h +123 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_support.c +39 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_support.h +47 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_thread.c +411 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_thread.h +95 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_thread_attributes.c +149 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_thread_attributes.h +78 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_thread_pool.c +1725 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_thread_pool.h +177 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_types.h +63 -0
- libfsxfs_python-20260701/libcthreads/libcthreads_unused.h +44 -0
- libfsxfs_python-20260701/libfcache/Makefile.am +35 -0
- libfsxfs_python-20260701/libfcache/Makefile.in +910 -0
- libfsxfs_python-20260701/libfcache/libfcache_cache.c +1118 -0
- libfsxfs_python-20260701/libfcache/libfcache_cache.h +149 -0
- libfsxfs_python-20260701/libfcache/libfcache_cache_value.c +502 -0
- libfsxfs_python-20260701/libfcache/libfcache_cache_value.h +132 -0
- libfsxfs_python-20260701/libfcache/libfcache_date_time.c +92 -0
- libfsxfs_python-20260701/libfcache/libfcache_date_time.h +45 -0
- libfsxfs_python-20260701/libfcache/libfcache_definitions.h +58 -0
- libfsxfs_python-20260701/libfcache/libfcache_error.c +111 -0
- libfsxfs_python-20260701/libfcache/libfcache_error.h +74 -0
- libfsxfs_python-20260701/libfcache/libfcache_extern.h +40 -0
- libfsxfs_python-20260701/libfcache/libfcache_libcdata.h +54 -0
- libfsxfs_python-20260701/libfcache/libfcache_libcerror.h +50 -0
- libfsxfs_python-20260701/libfcache/libfcache_support.c +41 -0
- libfsxfs_python-20260701/libfcache/libfcache_support.h +47 -0
- libfsxfs_python-20260701/libfcache/libfcache_types.h +49 -0
- libfsxfs_python-20260701/libfcache/libfcache_unused.h +44 -0
- libfsxfs_python-20260701/libfdata/Makefile.am +47 -0
- libfsxfs_python-20260701/libfdata/Makefile.in +963 -0
- libfsxfs_python-20260701/libfdata/libfdata_area.c +1482 -0
- libfsxfs_python-20260701/libfdata/libfdata_area.h +278 -0
- libfsxfs_python-20260701/libfdata/libfdata_cache.c +59 -0
- libfsxfs_python-20260701/libfdata/libfdata_cache.h +56 -0
- libfsxfs_python-20260701/libfdata/libfdata_definitions.h +249 -0
- libfsxfs_python-20260701/libfdata/libfdata_error.c +111 -0
- libfsxfs_python-20260701/libfdata/libfdata_error.h +74 -0
- libfsxfs_python-20260701/libfdata/libfdata_extern.h +40 -0
- libfsxfs_python-20260701/libfdata/libfdata_libcdata.h +54 -0
- libfsxfs_python-20260701/libfdata/libfdata_libcerror.h +50 -0
- libfsxfs_python-20260701/libfdata/libfdata_libcnotify.h +50 -0
- libfsxfs_python-20260701/libfdata/libfdata_libfcache.h +50 -0
- libfsxfs_python-20260701/libfdata/libfdata_list.c +4426 -0
- libfsxfs_python-20260701/libfdata/libfdata_list.h +452 -0
- libfsxfs_python-20260701/libfdata/libfdata_list_element.c +824 -0
- libfsxfs_python-20260701/libfdata/libfdata_list_element.h +159 -0
- libfsxfs_python-20260701/libfdata/libfdata_mapped_range.c +312 -0
- libfsxfs_python-20260701/libfdata/libfdata_mapped_range.h +77 -0
- libfsxfs_python-20260701/libfdata/libfdata_notify.c +120 -0
- libfsxfs_python-20260701/libfdata/libfdata_notify.h +63 -0
- libfsxfs_python-20260701/libfdata/libfdata_range.c +358 -0
- libfsxfs_python-20260701/libfdata/libfdata_range.h +94 -0
- libfsxfs_python-20260701/libfdata/libfdata_range_list.c +1196 -0
- libfsxfs_python-20260701/libfdata/libfdata_range_list.h +214 -0
- libfsxfs_python-20260701/libfdata/libfdata_segments_array.c +914 -0
- libfsxfs_python-20260701/libfdata/libfdata_segments_array.h +94 -0
- libfsxfs_python-20260701/libfdata/libfdata_stream.c +2582 -0
- libfsxfs_python-20260701/libfdata/libfdata_stream.h +363 -0
- libfsxfs_python-20260701/libfdata/libfdata_support.c +41 -0
- libfsxfs_python-20260701/libfdata/libfdata_support.h +47 -0
- libfsxfs_python-20260701/libfdata/libfdata_types.h +59 -0
- libfsxfs_python-20260701/libfdata/libfdata_unused.h +44 -0
- libfsxfs_python-20260701/libfdata/libfdata_vector.c +1932 -0
- libfsxfs_python-20260701/libfdata/libfdata_vector.h +295 -0
- libfsxfs_python-20260701/libfdatetime/Makefile.am +36 -0
- libfsxfs_python-20260701/libfdatetime/Makefile.in +941 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_date_time_values.c +1906 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_date_time_values.h +121 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_definitions.h +121 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_error.c +111 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_error.h +74 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_extern.h +40 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_fat_date_time.c +1258 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_fat_date_time.h +172 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_filetime.c +1465 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_filetime.h +177 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_floatingtime.c +1333 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_floatingtime.h +168 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_hfs_time.c +1329 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_hfs_time.h +166 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_libcerror.h +50 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_nsf_timedate.c +1373 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_nsf_timedate.h +177 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_posix_time.c +1918 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_posix_time.h +189 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_support.c +41 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_support.h +47 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_systemtime.c +1779 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_systemtime.h +180 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_types.h +63 -0
- libfsxfs_python-20260701/libfdatetime/libfdatetime_unused.h +44 -0
- libfsxfs_python-20260701/libfguid/Makefile.am +29 -0
- libfsxfs_python-20260701/libfguid/Makefile.in +891 -0
- libfsxfs_python-20260701/libfguid/libfguid_definitions.h +84 -0
- libfsxfs_python-20260701/libfguid/libfguid_error.c +111 -0
- libfsxfs_python-20260701/libfguid/libfguid_error.h +74 -0
- libfsxfs_python-20260701/libfguid/libfguid_extern.h +40 -0
- libfsxfs_python-20260701/libfguid/libfguid_identifier.c +2524 -0
- libfsxfs_python-20260701/libfguid/libfguid_identifier.h +204 -0
- libfsxfs_python-20260701/libfguid/libfguid_libcerror.h +50 -0
- libfsxfs_python-20260701/libfguid/libfguid_support.c +41 -0
- libfsxfs_python-20260701/libfguid/libfguid_support.h +47 -0
- libfsxfs_python-20260701/libfguid/libfguid_types.h +47 -0
- libfsxfs_python-20260701/libfguid/libfguid_unused.h +44 -0
- libfsxfs_python-20260701/libfsxfs/Makefile.am +126 -0
- libfsxfs_python-20260701/libfsxfs/Makefile.in +1223 -0
- libfsxfs_python-20260701/libfsxfs/fsxfs_attributes.h +77 -0
- libfsxfs_python-20260701/libfsxfs/fsxfs_attributes_block.h +267 -0
- libfsxfs_python-20260701/libfsxfs/fsxfs_block_directory.h +97 -0
- libfsxfs_python-20260701/libfsxfs/fsxfs_btree.h +232 -0
- libfsxfs_python-20260701/libfsxfs/fsxfs_directory_block.h +127 -0
- libfsxfs_python-20260701/libfsxfs/fsxfs_file_system_block.h +112 -0
- libfsxfs_python-20260701/libfsxfs/fsxfs_inode.h +513 -0
- libfsxfs_python-20260701/libfsxfs/fsxfs_inode_information.h +187 -0
- libfsxfs_python-20260701/libfsxfs/fsxfs_superblock.h +527 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs.c +84 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs.rc +38 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs.rc.in +38 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_attribute_values.c +661 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_attribute_values.h +119 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_attributes.c +1379 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_attributes.h +86 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_attributes_leaf_block_header.c +308 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_attributes_leaf_block_header.h +64 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_attributes_table.c +491 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_attributes_table.h +65 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_attributes_table_header.c +225 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_attributes_table_header.h +66 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_block_data_handle.c +166 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_block_data_handle.h +61 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_block_descriptor.c +131 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_block_descriptor.h +56 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_block_directory.c +804 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_block_directory.h +90 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_block_directory_footer.c +227 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_block_directory_footer.h +62 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_block_directory_header.c +386 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_block_directory_header.h +66 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_block_tree.c +551 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_block_tree.h +89 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_block_tree_node.c +613 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_block_tree_node.h +109 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_btree_block.c +427 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_btree_block.h +95 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_btree_header.c +458 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_btree_header.h +73 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_buffer_data_handle.c +324 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_buffer_data_handle.h +85 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_data_stream.c +436 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_data_stream.h +63 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_debug.c +790 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_debug.h +92 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_definitions.h +137 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_definitions.h.in +137 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_directory.c +1745 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_directory.h +128 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_directory_entry.c +500 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_directory_entry.h +108 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_directory_leaf_block_header.c +273 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_directory_leaf_block_header.h +62 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_directory_table.c +539 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_directory_table.h +67 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_directory_table_header.c +329 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_directory_table_header.h +72 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_error.c +111 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_error.h +74 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_extended_attribute.c +1185 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_extended_attribute.h +177 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_extent.c +361 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_extent.h +83 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_extent_btree.c +771 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_extent_btree.h +92 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_extent_list.c +168 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_extent_list.h +49 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_extents.c +315 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_extents.h +54 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_extern.h +53 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_file_entry.c +4138 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_file_entry.h +390 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_file_system.c +1098 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_file_system.h +109 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_file_system_block.c +395 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_file_system_block.h +82 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_file_system_block_header.c +314 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_file_system_block_header.h +72 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_inode.c +2195 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_inode.h +249 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_inode_btree.c +926 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_inode_btree.h +106 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_inode_btree_record.c +231 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_inode_btree_record.h +70 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_inode_information.c +484 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_inode_information.h +80 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_io_handle.c +174 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_io_handle.h +109 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_libbfio.h +58 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_libcdata.h +54 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_libcerror.h +50 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_libclocale.h +50 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_libcnotify.h +50 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_libcthreads.h +64 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_libfcache.h +50 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_libfdata.h +54 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_libfdatetime.h +56 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_libfguid.h +49 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_libuna.h +60 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_notify.c +120 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_notify.h +63 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_superblock.c +1197 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_superblock.h +165 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_support.c +430 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_support.h +82 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_types.h +51 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_unused.h +44 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_volume.c +2514 -0
- libfsxfs_python-20260701/libfsxfs/libfsxfs_volume.h +232 -0
- libfsxfs_python-20260701/libfsxfs.pc.in +12 -0
- libfsxfs_python-20260701/libfsxfs.spec +100 -0
- libfsxfs_python-20260701/libfsxfs.spec.in +100 -0
- libfsxfs_python-20260701/libhmac/Makefile.am +41 -0
- libfsxfs_python-20260701/libhmac/Makefile.in +954 -0
- libfsxfs_python-20260701/libhmac/libhmac_byte_stream.h +161 -0
- libfsxfs_python-20260701/libhmac/libhmac_definitions.h +56 -0
- libfsxfs_python-20260701/libhmac/libhmac_error.c +111 -0
- libfsxfs_python-20260701/libhmac/libhmac_error.h +74 -0
- libfsxfs_python-20260701/libhmac/libhmac_extern.h +40 -0
- libfsxfs_python-20260701/libhmac/libhmac_libcerror.h +50 -0
- libfsxfs_python-20260701/libhmac/libhmac_md5.c +715 -0
- libfsxfs_python-20260701/libhmac/libhmac_md5.h +84 -0
- libfsxfs_python-20260701/libhmac/libhmac_md5_context.c +1292 -0
- libfsxfs_python-20260701/libhmac/libhmac_md5_context.h +130 -0
- libfsxfs_python-20260701/libhmac/libhmac_sha1.c +715 -0
- libfsxfs_python-20260701/libhmac/libhmac_sha1.h +83 -0
- libfsxfs_python-20260701/libhmac/libhmac_sha1_context.c +1380 -0
- libfsxfs_python-20260701/libhmac/libhmac_sha1_context.h +130 -0
- libfsxfs_python-20260701/libhmac/libhmac_sha224.c +715 -0
- libfsxfs_python-20260701/libhmac/libhmac_sha224.h +83 -0
- libfsxfs_python-20260701/libhmac/libhmac_sha224_context.c +1348 -0
- libfsxfs_python-20260701/libhmac/libhmac_sha224_context.h +130 -0
- libfsxfs_python-20260701/libhmac/libhmac_sha256.c +715 -0
- libfsxfs_python-20260701/libhmac/libhmac_sha256.h +83 -0
- libfsxfs_python-20260701/libhmac/libhmac_sha256_context.c +1351 -0
- libfsxfs_python-20260701/libhmac/libhmac_sha256_context.h +130 -0
- libfsxfs_python-20260701/libhmac/libhmac_sha512.c +715 -0
- libfsxfs_python-20260701/libhmac/libhmac_sha512.h +83 -0
- libfsxfs_python-20260701/libhmac/libhmac_sha512_context.c +1387 -0
- libfsxfs_python-20260701/libhmac/libhmac_sha512_context.h +130 -0
- libfsxfs_python-20260701/libhmac/libhmac_support.c +39 -0
- libfsxfs_python-20260701/libhmac/libhmac_support.h +47 -0
- libfsxfs_python-20260701/libhmac/libhmac_types.h +55 -0
- libfsxfs_python-20260701/libhmac/libhmac_unused.h +44 -0
- libfsxfs_python-20260701/libuna/Makefile.am +89 -0
- libfsxfs_python-20260701/libuna/Makefile.in +1310 -0
- libfsxfs_python-20260701/libuna/libuna_base16_stream.c +1511 -0
- libfsxfs_python-20260701/libuna/libuna_base16_stream.h +93 -0
- libfsxfs_python-20260701/libuna/libuna_base32_stream.c +3035 -0
- libfsxfs_python-20260701/libuna/libuna_base32_stream.h +131 -0
- libfsxfs_python-20260701/libuna/libuna_base64_stream.c +2832 -0
- libfsxfs_python-20260701/libuna/libuna_base64_stream.h +131 -0
- libfsxfs_python-20260701/libuna/libuna_byte_stream.c +633 -0
- libfsxfs_python-20260701/libuna/libuna_byte_stream.h +104 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_10.c +73 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_10.h +48 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_13.c +82 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_13.h +48 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_14.c +66 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_14.h +51 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_15.c +46 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_15.h +45 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_16.c +78 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_16.h +57 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_2.c +82 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_2.h +51 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_3.c +79 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_3.h +57 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_4.c +80 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_4.h +48 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_5.c +62 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_5.h +45 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_6.c +58 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_6.h +45 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_7.c +66 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_7.h +48 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_8.c +61 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_8.h +48 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_9.c +50 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_iso_8859_9.h +45 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_koi8_r.c +392 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_koi8_r.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_koi8_u.c +424 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_koi8_u.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_arabic.c +352 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_arabic.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_celtic.c +395 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_celtic.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_centraleurroman.c +319 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_centraleurroman.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_croatian.c +378 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_croatian.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_cyrillic.c +325 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_cyrillic.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_dingbats.c +347 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_dingbats.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_farsi.c +372 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_farsi.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_gaelic.c +437 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_gaelic.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_greek.c +305 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_greek.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_icelandic.c +381 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_icelandic.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_inuit.c +380 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_inuit.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_roman.c +387 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_roman.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_romanian.c +396 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_romanian.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_russian.c +317 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_russian.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_symbol.c +537 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_symbol.h +59 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_thai.c +330 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_thai.h +59 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_turkish.c +397 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_turkish.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_ukrainian.c +321 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_mac_ukrainian.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_1250.c +313 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_1250.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_1251.c +301 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_1251.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_1252.c +287 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_1252.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_1253.c +291 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_1253.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_1254.c +348 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_1254.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_1255.c +328 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_1255.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_1256.c +372 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_1256.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_1257.c +303 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_1257.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_1258.c +349 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_1258.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_874.c +274 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_874.h +54 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_932.c +4913 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_932.h +59 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_936.c +7371 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_936.h +59 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_949.c +8163 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_949.h +59 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_950.c +6390 -0
- libfsxfs_python-20260701/libuna/libuna_codepage_windows_950.h +59 -0
- libfsxfs_python-20260701/libuna/libuna_definitions.h +436 -0
- libfsxfs_python-20260701/libuna/libuna_error.c +111 -0
- libfsxfs_python-20260701/libuna/libuna_error.h +74 -0
- libfsxfs_python-20260701/libuna/libuna_extern.h +53 -0
- libfsxfs_python-20260701/libuna/libuna_libcerror.h +50 -0
- libfsxfs_python-20260701/libuna/libuna_scsu.c +64 -0
- libfsxfs_python-20260701/libuna/libuna_scsu.h +45 -0
- libfsxfs_python-20260701/libuna/libuna_support.c +39 -0
- libfsxfs_python-20260701/libuna/libuna_support.h +49 -0
- libfsxfs_python-20260701/libuna/libuna_types.h +53 -0
- libfsxfs_python-20260701/libuna/libuna_unicode_character.c +5828 -0
- libfsxfs_python-20260701/libuna/libuna_unicode_character.h +260 -0
- libfsxfs_python-20260701/libuna/libuna_unused.h +44 -0
- libfsxfs_python-20260701/libuna/libuna_url_stream.c +584 -0
- libfsxfs_python-20260701/libuna/libuna_url_stream.h +71 -0
- libfsxfs_python-20260701/libuna/libuna_utf16_stream.c +815 -0
- libfsxfs_python-20260701/libuna/libuna_utf16_stream.h +109 -0
- libfsxfs_python-20260701/libuna/libuna_utf16_string.c +3950 -0
- libfsxfs_python-20260701/libuna/libuna_utf16_string.h +325 -0
- libfsxfs_python-20260701/libuna/libuna_utf32_stream.c +819 -0
- libfsxfs_python-20260701/libuna/libuna_utf32_stream.h +109 -0
- libfsxfs_python-20260701/libuna/libuna_utf32_string.c +3808 -0
- libfsxfs_python-20260701/libuna/libuna_utf32_string.h +321 -0
- libfsxfs_python-20260701/libuna/libuna_utf7_stream.c +628 -0
- libfsxfs_python-20260701/libuna/libuna_utf7_stream.h +98 -0
- libfsxfs_python-20260701/libuna/libuna_utf8_stream.c +748 -0
- libfsxfs_python-20260701/libuna/libuna_utf8_stream.h +105 -0
- libfsxfs_python-20260701/libuna/libuna_utf8_string.c +4092 -0
- libfsxfs_python-20260701/libuna/libuna_utf8_string.h +329 -0
- libfsxfs_python-20260701/ltmain.sh +11436 -0
- libfsxfs_python-20260701/m4/common.m4 +656 -0
- libfsxfs_python-20260701/m4/libbfio.m4 +215 -0
- libfsxfs_python-20260701/m4/libcdata.m4 +227 -0
- libfsxfs_python-20260701/m4/libcerror.m4 +186 -0
- libfsxfs_python-20260701/m4/libcfile.m4 +307 -0
- libfsxfs_python-20260701/m4/libclocale.m4 +242 -0
- libfsxfs_python-20260701/m4/libcnotify.m4 +160 -0
- libfsxfs_python-20260701/m4/libcpath.m4 +274 -0
- libfsxfs_python-20260701/m4/libcrypto.m4 +999 -0
- libfsxfs_python-20260701/m4/libcsplit.m4 +183 -0
- libfsxfs_python-20260701/m4/libcthreads.m4 +214 -0
- libfsxfs_python-20260701/m4/libfcache.m4 +173 -0
- libfsxfs_python-20260701/m4/libfdata.m4 +241 -0
- libfsxfs_python-20260701/m4/libfdatetime.m4 +219 -0
- libfsxfs_python-20260701/m4/libfguid.m4 +153 -0
- libfsxfs_python-20260701/m4/libfuse.m4 +262 -0
- libfsxfs_python-20260701/m4/libhmac.m4 +210 -0
- libfsxfs_python-20260701/m4/libtool.m4 +8427 -0
- libfsxfs_python-20260701/m4/libuna.m4 +311 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/m4/ltoptions.m4 +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/m4/ltsugar.m4 +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/m4/ltversion.m4 +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/m4/lt~obsolete.m4 +0 -0
- libfsxfs_python-20260701/m4/pthread.m4 +126 -0
- libfsxfs_python-20260701/m4/python.m4 +222 -0
- libfsxfs_python-20260701/m4/tests.m4 +318 -0
- libfsxfs_python-20260701/m4/types.m4 +133 -0
- libfsxfs_python-20260701/m4/yaltools.m4 +98 -0
- libfsxfs_python-20260701/manuals/Makefile.am +12 -0
- libfsxfs_python-20260701/manuals/Makefile.in +834 -0
- libfsxfs_python-20260701/manuals/fsxfsinfo.1 +90 -0
- libfsxfs_python-20260701/manuals/fsxfsmount.1 +69 -0
- libfsxfs_python-20260701/manuals/libfsxfs.3 +745 -0
- libfsxfs_python-20260701/msvscpp/Makefile.am +60 -0
- libfsxfs_python-20260701/msvscpp/Makefile.in +758 -0
- libfsxfs_python-20260701/msvscpp/fsxfs_test_attributes/fsxfs_test_attributes.vcproj +238 -0
- libfsxfs_python-20260701/msvscpp/fsxfs_test_block_directory/fsxfs_test_block_directory.vcproj +238 -0
- libfsxfs_python-20260701/msvscpp/fsxfs_test_directory_table/fsxfs_test_directory_table.vcproj +226 -0
- libfsxfs_python-20260701/msvscpp/fsxfs_test_file_entry/fsxfs_test_file_entry.vcproj +222 -0
- libfsxfs_python-20260701/msvscpp/fsxfs_test_file_system_block/fsxfs_test_file_system_block.vcproj +234 -0
- libfsxfs_python-20260701/msvscpp/fsxfs_test_tools_mount_path_string/fsxfs_test_tools_mount_path_string.vcproj +222 -0
- libfsxfs_python-20260701/msvscpp/fsxfsmount/fsxfsmount.vcproj +308 -0
- libfsxfs_python-20260701/msvscpp/libfsxfs/libfsxfs.vcproj +620 -0
- libfsxfs_python-20260701/msvscpp/libfsxfs.sln +633 -0
- libfsxfs_python-20260701/msvscpp/libhmac/libhmac.vcproj +289 -0
- libfsxfs_python-20260701/msvscpp/pyfsxfs/pyfsxfs.vcproj +288 -0
- libfsxfs_python-20260701/ossfuzz/Makefile.am +85 -0
- libfsxfs_python-20260701/ossfuzz/Makefile.in +1027 -0
- libfsxfs_python-20260701/ossfuzz/extended_attribute_fuzzer.cc +138 -0
- libfsxfs_python-20260701/ossfuzz/file_entry_fuzzer.cc +239 -0
- libfsxfs_python-20260701/ossfuzz/ossfuzz_libbfio.h +58 -0
- libfsxfs_python-20260701/ossfuzz/ossfuzz_libfsxfs.h +30 -0
- libfsxfs_python-20260701/ossfuzz/volume_fuzzer.cc +119 -0
- libfsxfs_python-20260701/po/Makevars +45 -0
- libfsxfs_python-20260701/pyfsxfs/Makefile.am +53 -0
- libfsxfs_python-20260701/pyfsxfs/Makefile.in +1083 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs.c +714 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs.h +71 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_datetime.c +691 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_datetime.h +65 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_error.c +422 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_error.h +60 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_extended_attribute.c +1299 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_extended_attribute.h +110 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_extended_attributes.c +452 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_extended_attributes.h +95 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_file_entries.c +452 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_file_entries.h +95 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_file_entry.c +3162 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_file_entry.h +219 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_file_object_io_handle.c +1524 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_file_object_io_handle.h +141 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_integer.c +399 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_integer.h +56 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_libbfio.h +54 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_libcerror.h +50 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_libfsxfs.h +30 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_python.h +83 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_unused.h +44 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_volume.c +1202 -0
- libfsxfs_python-20260701/pyfsxfs/pyfsxfs_volume.h +103 -0
- libfsxfs_python-20260701/pyproject.toml +35 -0
- libfsxfs_python-20260701/pyproject.toml.in +35 -0
- libfsxfs_python-20260701/tests/Makefile.am +643 -0
- libfsxfs_python-20260701/tests/Makefile.in +2008 -0
- libfsxfs_python-20260701/tests/atlocal.in +29 -0
- libfsxfs_python-20260701/tests/fsxfs_test_attribute_values.c +1687 -0
- libfsxfs_python-20260701/tests/fsxfs_test_attributes.c +694 -0
- libfsxfs_python-20260701/tests/fsxfs_test_attributes_leaf_block_header.c +543 -0
- libfsxfs_python-20260701/tests/fsxfs_test_attributes_table.c +568 -0
- libfsxfs_python-20260701/tests/fsxfs_test_attributes_table_header.c +474 -0
- libfsxfs_python-20260701/tests/fsxfs_test_block_directory.c +1036 -0
- libfsxfs_python-20260701/tests/fsxfs_test_block_directory_footer.c +474 -0
- libfsxfs_python-20260701/tests/fsxfs_test_block_directory_header.c +474 -0
- libfsxfs_python-20260701/tests/fsxfs_test_btree_block.c +901 -0
- libfsxfs_python-20260701/tests/fsxfs_test_btree_header.c +570 -0
- libfsxfs_python-20260701/tests/fsxfs_test_buffer_data_handle.c +114 -0
- libfsxfs_python-20260701/tests/fsxfs_test_directory_entry.c +311 -0
- libfsxfs_python-20260701/tests/fsxfs_test_directory_table.c +652 -0
- libfsxfs_python-20260701/tests/fsxfs_test_directory_table_header.c +545 -0
- libfsxfs_python-20260701/tests/fsxfs_test_error.c +150 -0
- libfsxfs_python-20260701/tests/fsxfs_test_extent.c +311 -0
- libfsxfs_python-20260701/tests/fsxfs_test_file_entry.c +168 -0
- libfsxfs_python-20260701/tests/fsxfs_test_file_system_block.c +894 -0
- libfsxfs_python-20260701/tests/fsxfs_test_file_system_block_header.c +545 -0
- libfsxfs_python-20260701/tests/fsxfs_test_functions.c +672 -0
- libfsxfs_python-20260701/tests/fsxfs_test_functions.h +72 -0
- libfsxfs_python-20260701/tests/fsxfs_test_getopt.c +190 -0
- libfsxfs_python-20260701/tests/fsxfs_test_getopt.h +68 -0
- libfsxfs_python-20260701/tests/fsxfs_test_inode_btree.c +311 -0
- libfsxfs_python-20260701/tests/fsxfs_test_inode_btree_record.c +474 -0
- libfsxfs_python-20260701/tests/fsxfs_test_inode_information.c +883 -0
- libfsxfs_python-20260701/tests/fsxfs_test_io_handle.c +443 -0
- libfsxfs_python-20260701/tests/fsxfs_test_libbfio.h +58 -0
- libfsxfs_python-20260701/tests/fsxfs_test_libcdata.h +54 -0
- libfsxfs_python-20260701/tests/fsxfs_test_libcerror.h +50 -0
- libfsxfs_python-20260701/tests/fsxfs_test_libclocale.h +50 -0
- libfsxfs_python-20260701/tests/fsxfs_test_libcnotify.h +50 -0
- libfsxfs_python-20260701/tests/fsxfs_test_libcpath.h +48 -0
- libfsxfs_python-20260701/tests/fsxfs_test_libfsxfs.h +30 -0
- libfsxfs_python-20260701/tests/fsxfs_test_libuna.h +60 -0
- libfsxfs_python-20260701/tests/fsxfs_test_macros.h +257 -0
- libfsxfs_python-20260701/tests/fsxfs_test_memory.c +199 -0
- libfsxfs_python-20260701/tests/fsxfs_test_memory.h +66 -0
- libfsxfs_python-20260701/tests/fsxfs_test_notify.c +229 -0
- libfsxfs_python-20260701/tests/fsxfs_test_superblock.c +750 -0
- libfsxfs_python-20260701/tests/fsxfs_test_support.c +833 -0
- libfsxfs_python-20260701/tests/fsxfs_test_tools_info_handle.c +304 -0
- libfsxfs_python-20260701/tests/fsxfs_test_tools_mount_path_string.c +929 -0
- libfsxfs_python-20260701/tests/fsxfs_test_tools_output.c +105 -0
- libfsxfs_python-20260701/tests/fsxfs_test_tools_signal.c +213 -0
- libfsxfs_python-20260701/tests/fsxfs_test_unused.h +50 -0
- libfsxfs_python-20260701/tests/fsxfs_test_volume.c +2279 -0
- libfsxfs_python-20260701/tests/generate_test_inputs.sh +301 -0
- libfsxfs_python-20260701/tests/package.m4 +5 -0
- libfsxfs_python-20260701/tests/pyfsxfs_test_support.py +111 -0
- libfsxfs_python-20260701/tests/pyfsxfs_test_volume.py +300 -0
- libfsxfs_python-20260701/tests/test_library.at +41 -0
- libfsxfs_python-20260701/tests/test_macros.at +188 -0
- libfsxfs_python-20260701/tests/test_manpages.at +73 -0
- libfsxfs_python-20260701/tests/test_tools.at +256 -0
- libfsxfs-20240222/AUTHORS +0 -4
- libfsxfs-20240222/Makefile.am +0 -110
- libfsxfs-20240222/Makefile.in +0 -1228
- libfsxfs-20240222/PKG-INFO +0 -13
- libfsxfs-20240222/README +0 -21
- libfsxfs-20240222/acinclude.m4 +0 -59
- libfsxfs-20240222/aclocal.m4 +0 -1549
- libfsxfs-20240222/common/Makefile.am +0 -25
- libfsxfs-20240222/common/Makefile.in +0 -790
- libfsxfs-20240222/common/byte_stream.h +0 -257
- libfsxfs-20240222/common/common.h +0 -43
- libfsxfs-20240222/common/config.h +0 -656
- libfsxfs-20240222/common/config.h.in +0 -655
- libfsxfs-20240222/common/config_borlandc.h +0 -26
- libfsxfs-20240222/common/config_msc.h +0 -34
- libfsxfs-20240222/common/config_winapi.h +0 -95
- libfsxfs-20240222/common/file_stream.h +0 -151
- libfsxfs-20240222/common/memory.h +0 -129
- libfsxfs-20240222/common/narrow_string.h +0 -187
- libfsxfs-20240222/common/system_string.h +0 -154
- libfsxfs-20240222/common/types.h +0 -392
- libfsxfs-20240222/common/types.h.in +0 -392
- libfsxfs-20240222/common/wide_string.h +0 -175
- libfsxfs-20240222/config.guess +0 -1774
- libfsxfs-20240222/config.sub +0 -1907
- libfsxfs-20240222/configure +0 -63858
- libfsxfs-20240222/configure.ac +0 -250
- libfsxfs-20240222/dpkg/changelog +0 -5
- libfsxfs-20240222/dpkg/compat +0 -1
- libfsxfs-20240222/dpkg/control +0 -65
- libfsxfs-20240222/dpkg/copyright +0 -25
- libfsxfs-20240222/dpkg/rules +0 -31
- libfsxfs-20240222/fsxfstools/Makefile.am +0 -110
- libfsxfs-20240222/fsxfstools/Makefile.in +0 -1023
- libfsxfs-20240222/fsxfstools/digest_hash.c +0 -129
- libfsxfs-20240222/fsxfstools/digest_hash.h +0 -46
- libfsxfs-20240222/fsxfstools/fsxfsinfo.c +0 -485
- libfsxfs-20240222/fsxfstools/fsxfsmount.c +0 -604
- libfsxfs-20240222/fsxfstools/fsxfstools_getopt.c +0 -190
- libfsxfs-20240222/fsxfstools/fsxfstools_getopt.h +0 -68
- libfsxfs-20240222/fsxfstools/fsxfstools_i18n.h +0 -48
- libfsxfs-20240222/fsxfstools/fsxfstools_libbfio.h +0 -58
- libfsxfs-20240222/fsxfstools/fsxfstools_libcerror.h +0 -50
- libfsxfs-20240222/fsxfstools/fsxfstools_libclocale.h +0 -50
- libfsxfs-20240222/fsxfstools/fsxfstools_libcnotify.h +0 -50
- libfsxfs-20240222/fsxfstools/fsxfstools_libcpath.h +0 -48
- libfsxfs-20240222/fsxfstools/fsxfstools_libfcache.h +0 -50
- libfsxfs-20240222/fsxfstools/fsxfstools_libfdata.h +0 -54
- libfsxfs-20240222/fsxfstools/fsxfstools_libfdatetime.h +0 -56
- libfsxfs-20240222/fsxfstools/fsxfstools_libfsxfs.h +0 -30
- libfsxfs-20240222/fsxfstools/fsxfstools_libhmac.h +0 -51
- libfsxfs-20240222/fsxfstools/fsxfstools_libuna.h +0 -60
- libfsxfs-20240222/fsxfstools/fsxfstools_output.c +0 -194
- libfsxfs-20240222/fsxfstools/fsxfstools_output.h +0 -55
- libfsxfs-20240222/fsxfstools/fsxfstools_signal.c +0 -262
- libfsxfs-20240222/fsxfstools/fsxfstools_signal.h +0 -72
- libfsxfs-20240222/fsxfstools/fsxfstools_unused.h +0 -50
- libfsxfs-20240222/fsxfstools/info_handle.c +0 -2789
- libfsxfs-20240222/fsxfstools/info_handle.h +0 -170
- libfsxfs-20240222/fsxfstools/mount_dokan.c +0 -1569
- libfsxfs-20240222/fsxfstools/mount_dokan.h +0 -171
- libfsxfs-20240222/fsxfstools/mount_file_entry.c +0 -985
- libfsxfs-20240222/fsxfstools/mount_file_entry.h +0 -139
- libfsxfs-20240222/fsxfstools/mount_file_system.c +0 -1277
- libfsxfs-20240222/fsxfstools/mount_file_system.h +0 -110
- libfsxfs-20240222/fsxfstools/mount_fuse.c +0 -1871
- libfsxfs-20240222/fsxfstools/mount_fuse.h +0 -128
- libfsxfs-20240222/fsxfstools/mount_handle.c +0 -897
- libfsxfs-20240222/fsxfstools/mount_handle.h +0 -138
- libfsxfs-20240222/include/Makefile.am +0 -27
- libfsxfs-20240222/include/Makefile.in +0 -854
- libfsxfs-20240222/include/libfsxfs/codepage.h +0 -122
- libfsxfs-20240222/include/libfsxfs/definitions.h +0 -80
- libfsxfs-20240222/include/libfsxfs/definitions.h.in +0 -80
- libfsxfs-20240222/include/libfsxfs/error.h +0 -291
- libfsxfs-20240222/include/libfsxfs/extern.h +0 -44
- libfsxfs-20240222/include/libfsxfs/features.h +0 -50
- libfsxfs-20240222/include/libfsxfs/features.h.in +0 -50
- libfsxfs-20240222/include/libfsxfs/types.h +0 -213
- libfsxfs-20240222/include/libfsxfs/types.h.in +0 -213
- libfsxfs-20240222/include/libfsxfs.h +0 -870
- libfsxfs-20240222/include/libfsxfs.h.in +0 -870
- libfsxfs-20240222/libbfio/Makefile.am +0 -54
- libfsxfs-20240222/libbfio/Makefile.in +0 -939
- libfsxfs-20240222/libbfio/libbfio_codepage.h +0 -90
- libfsxfs-20240222/libbfio/libbfio_definitions.h +0 -89
- libfsxfs-20240222/libbfio/libbfio_error.c +0 -111
- libfsxfs-20240222/libbfio/libbfio_error.h +0 -74
- libfsxfs-20240222/libbfio/libbfio_extern.h +0 -46
- libfsxfs-20240222/libbfio/libbfio_file.c +0 -444
- libfsxfs-20240222/libbfio/libbfio_file.h +0 -90
- libfsxfs-20240222/libbfio/libbfio_file_io_handle.c +0 -1198
- libfsxfs-20240222/libbfio/libbfio_file_io_handle.h +0 -152
- libfsxfs-20240222/libbfio/libbfio_file_pool.c +0 -494
- libfsxfs-20240222/libbfio/libbfio_file_pool.h +0 -81
- libfsxfs-20240222/libbfio/libbfio_file_range.c +0 -468
- libfsxfs-20240222/libbfio/libbfio_file_range.h +0 -104
- libfsxfs-20240222/libbfio/libbfio_file_range_io_handle.c +0 -1158
- libfsxfs-20240222/libbfio/libbfio_file_range_io_handle.h +0 -160
- libfsxfs-20240222/libbfio/libbfio_handle.c +0 -2708
- libfsxfs-20240222/libbfio/libbfio_handle.h +0 -363
- libfsxfs-20240222/libbfio/libbfio_libcdata.h +0 -54
- libfsxfs-20240222/libbfio/libbfio_libcerror.h +0 -50
- libfsxfs-20240222/libbfio/libbfio_libcfile.h +0 -50
- libfsxfs-20240222/libbfio/libbfio_libclocale.h +0 -50
- libfsxfs-20240222/libbfio/libbfio_libcpath.h +0 -48
- libfsxfs-20240222/libbfio/libbfio_libcthreads.h +0 -64
- libfsxfs-20240222/libbfio/libbfio_libuna.h +0 -60
- libfsxfs-20240222/libbfio/libbfio_memory_range.c +0 -205
- libfsxfs-20240222/libbfio/libbfio_memory_range.h +0 -60
- libfsxfs-20240222/libbfio/libbfio_memory_range_io_handle.c +0 -871
- libfsxfs-20240222/libbfio/libbfio_memory_range_io_handle.h +0 -129
- libfsxfs-20240222/libbfio/libbfio_pool.c +0 -3521
- libfsxfs-20240222/libbfio/libbfio_pool.h +0 -275
- libfsxfs-20240222/libbfio/libbfio_support.c +0 -93
- libfsxfs-20240222/libbfio/libbfio_support.h +0 -58
- libfsxfs-20240222/libbfio/libbfio_system_string.c +0 -1017
- libfsxfs-20240222/libbfio/libbfio_system_string.h +0 -95
- libfsxfs-20240222/libbfio/libbfio_types.h +0 -49
- libfsxfs-20240222/libbfio/libbfio_unused.h +0 -44
- libfsxfs-20240222/libcdata/Makefile.am +0 -42
- libfsxfs-20240222/libcdata/Makefile.in +0 -923
- libfsxfs-20240222/libcdata/libcdata_array.c +0 -2015
- libfsxfs-20240222/libcdata/libcdata_array.h +0 -200
- libfsxfs-20240222/libcdata/libcdata_btree.c +0 -964
- libfsxfs-20240222/libcdata/libcdata_btree.h +0 -141
- libfsxfs-20240222/libcdata/libcdata_btree_node.c +0 -1607
- libfsxfs-20240222/libcdata/libcdata_btree_node.h +0 -101
- libfsxfs-20240222/libcdata/libcdata_btree_values_list.c +0 -217
- libfsxfs-20240222/libcdata/libcdata_btree_values_list.h +0 -55
- libfsxfs-20240222/libcdata/libcdata_definitions.h +0 -81
- libfsxfs-20240222/libcdata/libcdata_error.c +0 -111
- libfsxfs-20240222/libcdata/libcdata_error.h +0 -74
- libfsxfs-20240222/libcdata/libcdata_extern.h +0 -46
- libfsxfs-20240222/libcdata/libcdata_libcerror.h +0 -50
- libfsxfs-20240222/libcdata/libcdata_libcthreads.h +0 -64
- libfsxfs-20240222/libcdata/libcdata_list.c +0 -2906
- libfsxfs-20240222/libcdata/libcdata_list.h +0 -235
- libfsxfs-20240222/libcdata/libcdata_list_element.c +0 -926
- libfsxfs-20240222/libcdata/libcdata_list_element.h +0 -142
- libfsxfs-20240222/libcdata/libcdata_range_list.c +0 -4922
- libfsxfs-20240222/libcdata/libcdata_range_list.h +0 -382
- libfsxfs-20240222/libcdata/libcdata_range_list_value.c +0 -429
- libfsxfs-20240222/libcdata/libcdata_range_list_value.h +0 -100
- libfsxfs-20240222/libcdata/libcdata_support.c +0 -39
- libfsxfs-20240222/libcdata/libcdata_support.h +0 -47
- libfsxfs-20240222/libcdata/libcdata_tree_node.c +0 -4216
- libfsxfs-20240222/libcdata/libcdata_tree_node.h +0 -301
- libfsxfs-20240222/libcdata/libcdata_types.h +0 -57
- libfsxfs-20240222/libcdata/libcdata_unused.h +0 -44
- libfsxfs-20240222/libcerror/Makefile.am +0 -29
- libfsxfs-20240222/libcerror/Makefile.in +0 -873
- libfsxfs-20240222/libcerror/libcerror_definitions.h +0 -326
- libfsxfs-20240222/libcerror/libcerror_error.c +0 -827
- libfsxfs-20240222/libcerror/libcerror_error.h +0 -125
- libfsxfs-20240222/libcerror/libcerror_extern.h +0 -46
- libfsxfs-20240222/libcerror/libcerror_support.c +0 -39
- libfsxfs-20240222/libcerror/libcerror_support.h +0 -47
- libfsxfs-20240222/libcerror/libcerror_system.c +0 -587
- libfsxfs-20240222/libcerror/libcerror_system.h +0 -78
- libfsxfs-20240222/libcerror/libcerror_types.h +0 -51
- libfsxfs-20240222/libcerror/libcerror_unused.h +0 -44
- libfsxfs-20240222/libcfile/Makefile.am +0 -40
- libfsxfs-20240222/libcfile/Makefile.in +0 -897
- libfsxfs-20240222/libcfile/libcfile_definitions.h +0 -101
- libfsxfs-20240222/libcfile/libcfile_error.c +0 -111
- libfsxfs-20240222/libcfile/libcfile_error.h +0 -74
- libfsxfs-20240222/libcfile/libcfile_extern.h +0 -46
- libfsxfs-20240222/libcfile/libcfile_file.c +0 -4570
- libfsxfs-20240222/libcfile/libcfile_file.h +0 -273
- libfsxfs-20240222/libcfile/libcfile_libcerror.h +0 -50
- libfsxfs-20240222/libcfile/libcfile_libclocale.h +0 -50
- libfsxfs-20240222/libcfile/libcfile_libcnotify.h +0 -50
- libfsxfs-20240222/libcfile/libcfile_libuna.h +0 -60
- libfsxfs-20240222/libcfile/libcfile_notify.c +0 -120
- libfsxfs-20240222/libcfile/libcfile_notify.h +0 -63
- libfsxfs-20240222/libcfile/libcfile_support.c +0 -1171
- libfsxfs-20240222/libcfile/libcfile_support.h +0 -98
- libfsxfs-20240222/libcfile/libcfile_system_string.c +0 -1017
- libfsxfs-20240222/libcfile/libcfile_system_string.h +0 -95
- libfsxfs-20240222/libcfile/libcfile_types.h +0 -47
- libfsxfs-20240222/libcfile/libcfile_unused.h +0 -44
- libfsxfs-20240222/libcfile/libcfile_winapi.c +0 -815
- libfsxfs-20240222/libcfile/libcfile_winapi.h +0 -122
- libfsxfs-20240222/libclocale/Makefile.am +0 -32
- libfsxfs-20240222/libclocale/Makefile.in +0 -882
- libfsxfs-20240222/libclocale/libclocale_codepage.c +0 -920
- libfsxfs-20240222/libclocale/libclocale_codepage.h +0 -77
- libfsxfs-20240222/libclocale/libclocale_definitions.h +0 -106
- libfsxfs-20240222/libclocale/libclocale_extern.h +0 -46
- libfsxfs-20240222/libclocale/libclocale_libcerror.h +0 -50
- libfsxfs-20240222/libclocale/libclocale_locale.c +0 -494
- libfsxfs-20240222/libclocale/libclocale_locale.h +0 -66
- libfsxfs-20240222/libclocale/libclocale_support.c +0 -130
- libfsxfs-20240222/libclocale/libclocale_support.h +0 -55
- libfsxfs-20240222/libclocale/libclocale_unused.h +0 -44
- libfsxfs-20240222/libclocale/libclocale_wide_string.c +0 -69
- libfsxfs-20240222/libclocale/libclocale_wide_string.h +0 -54
- libfsxfs-20240222/libcnotify/Makefile.am +0 -31
- libfsxfs-20240222/libcnotify/Makefile.in +0 -880
- libfsxfs-20240222/libcnotify/libcnotify_definitions.h +0 -54
- libfsxfs-20240222/libcnotify/libcnotify_extern.h +0 -46
- libfsxfs-20240222/libcnotify/libcnotify_libcerror.h +0 -50
- libfsxfs-20240222/libcnotify/libcnotify_print.c +0 -400
- libfsxfs-20240222/libcnotify/libcnotify_print.h +0 -68
- libfsxfs-20240222/libcnotify/libcnotify_stream.c +0 -182
- libfsxfs-20240222/libcnotify/libcnotify_stream.h +0 -56
- libfsxfs-20240222/libcnotify/libcnotify_support.c +0 -39
- libfsxfs-20240222/libcnotify/libcnotify_support.h +0 -49
- libfsxfs-20240222/libcnotify/libcnotify_unused.h +0 -44
- libfsxfs-20240222/libcnotify/libcnotify_verbose.c +0 -38
- libfsxfs-20240222/libcnotify/libcnotify_verbose.h +0 -50
- libfsxfs-20240222/libcpath/Makefile.am +0 -37
- libfsxfs-20240222/libcpath/Makefile.in +0 -884
- libfsxfs-20240222/libcpath/libcpath_definitions.h +0 -83
- libfsxfs-20240222/libcpath/libcpath_error.c +0 -111
- libfsxfs-20240222/libcpath/libcpath_error.h +0 -74
- libfsxfs-20240222/libcpath/libcpath_extern.h +0 -46
- libfsxfs-20240222/libcpath/libcpath_libcerror.h +0 -50
- libfsxfs-20240222/libcpath/libcpath_libclocale.h +0 -50
- libfsxfs-20240222/libcpath/libcpath_libcsplit.h +0 -52
- libfsxfs-20240222/libcpath/libcpath_libuna.h +0 -60
- libfsxfs-20240222/libcpath/libcpath_path.c +0 -7174
- libfsxfs-20240222/libcpath/libcpath_path.h +0 -273
- libfsxfs-20240222/libcpath/libcpath_support.c +0 -93
- libfsxfs-20240222/libcpath/libcpath_support.h +0 -58
- libfsxfs-20240222/libcpath/libcpath_system_string.c +0 -1017
- libfsxfs-20240222/libcpath/libcpath_system_string.h +0 -95
- libfsxfs-20240222/libcpath/libcpath_unused.h +0 -44
- libfsxfs-20240222/libcsplit/Makefile.am +0 -34
- libfsxfs-20240222/libcsplit/Makefile.in +0 -895
- libfsxfs-20240222/libcsplit/libcsplit_definitions.h +0 -47
- libfsxfs-20240222/libcsplit/libcsplit_error.c +0 -111
- libfsxfs-20240222/libcsplit/libcsplit_error.h +0 -74
- libfsxfs-20240222/libcsplit/libcsplit_extern.h +0 -46
- libfsxfs-20240222/libcsplit/libcsplit_libcerror.h +0 -50
- libfsxfs-20240222/libcsplit/libcsplit_narrow_split_string.c +0 -547
- libfsxfs-20240222/libcsplit/libcsplit_narrow_split_string.h +0 -107
- libfsxfs-20240222/libcsplit/libcsplit_narrow_string.c +0 -288
- libfsxfs-20240222/libcsplit/libcsplit_narrow_string.h +0 -49
- libfsxfs-20240222/libcsplit/libcsplit_support.c +0 -39
- libfsxfs-20240222/libcsplit/libcsplit_support.h +0 -47
- libfsxfs-20240222/libcsplit/libcsplit_types.h +0 -49
- libfsxfs-20240222/libcsplit/libcsplit_unused.h +0 -44
- libfsxfs-20240222/libcsplit/libcsplit_wide_split_string.c +0 -551
- libfsxfs-20240222/libcsplit/libcsplit_wide_split_string.h +0 -111
- libfsxfs-20240222/libcsplit/libcsplit_wide_string.c +0 -292
- libfsxfs-20240222/libcsplit/libcsplit_wide_string.h +0 -53
- libfsxfs-20240222/libcthreads/Makefile.am +0 -40
- libfsxfs-20240222/libcthreads/Makefile.in +0 -925
- libfsxfs-20240222/libcthreads/libcthreads_condition.c +0 -735
- libfsxfs-20240222/libcthreads/libcthreads_condition.h +0 -120
- libfsxfs-20240222/libcthreads/libcthreads_definitions.h +0 -84
- libfsxfs-20240222/libcthreads/libcthreads_error.c +0 -111
- libfsxfs-20240222/libcthreads/libcthreads_error.h +0 -74
- libfsxfs-20240222/libcthreads/libcthreads_extern.h +0 -46
- libfsxfs-20240222/libcthreads/libcthreads_libcerror.h +0 -50
- libfsxfs-20240222/libcthreads/libcthreads_lock.c +0 -391
- libfsxfs-20240222/libcthreads/libcthreads_lock.h +0 -88
- libfsxfs-20240222/libcthreads/libcthreads_mutex.c +0 -601
- libfsxfs-20240222/libcthreads/libcthreads_mutex.h +0 -98
- libfsxfs-20240222/libcthreads/libcthreads_queue.c +0 -1150
- libfsxfs-20240222/libcthreads/libcthreads_queue.h +0 -136
- libfsxfs-20240222/libcthreads/libcthreads_read_write_lock.c +0 -690
- libfsxfs-20240222/libcthreads/libcthreads_read_write_lock.h +0 -119
- libfsxfs-20240222/libcthreads/libcthreads_repeating_thread.c +0 -644
- libfsxfs-20240222/libcthreads/libcthreads_repeating_thread.h +0 -115
- libfsxfs-20240222/libcthreads/libcthreads_support.c +0 -39
- libfsxfs-20240222/libcthreads/libcthreads_support.h +0 -47
- libfsxfs-20240222/libcthreads/libcthreads_thread.c +0 -405
- libfsxfs-20240222/libcthreads/libcthreads_thread.h +0 -95
- libfsxfs-20240222/libcthreads/libcthreads_thread_attributes.c +0 -149
- libfsxfs-20240222/libcthreads/libcthreads_thread_attributes.h +0 -78
- libfsxfs-20240222/libcthreads/libcthreads_thread_pool.c +0 -1721
- libfsxfs-20240222/libcthreads/libcthreads_thread_pool.h +0 -177
- libfsxfs-20240222/libcthreads/libcthreads_types.h +0 -63
- libfsxfs-20240222/libcthreads/libcthreads_unused.h +0 -44
- libfsxfs-20240222/libfcache/Makefile.am +0 -37
- libfsxfs-20240222/libfcache/Makefile.in +0 -892
- libfsxfs-20240222/libfcache/libfcache_cache.c +0 -1118
- libfsxfs-20240222/libfcache/libfcache_cache.h +0 -149
- libfsxfs-20240222/libfcache/libfcache_cache_value.c +0 -502
- libfsxfs-20240222/libfcache/libfcache_cache_value.h +0 -132
- libfsxfs-20240222/libfcache/libfcache_date_time.c +0 -92
- libfsxfs-20240222/libfcache/libfcache_date_time.h +0 -45
- libfsxfs-20240222/libfcache/libfcache_definitions.h +0 -58
- libfsxfs-20240222/libfcache/libfcache_error.c +0 -111
- libfsxfs-20240222/libfcache/libfcache_error.h +0 -74
- libfsxfs-20240222/libfcache/libfcache_extern.h +0 -46
- libfsxfs-20240222/libfcache/libfcache_libcdata.h +0 -54
- libfsxfs-20240222/libfcache/libfcache_libcerror.h +0 -50
- libfsxfs-20240222/libfcache/libfcache_support.c +0 -41
- libfsxfs-20240222/libfcache/libfcache_support.h +0 -47
- libfsxfs-20240222/libfcache/libfcache_types.h +0 -49
- libfsxfs-20240222/libfcache/libfcache_unused.h +0 -44
- libfsxfs-20240222/libfdata/Makefile.am +0 -49
- libfsxfs-20240222/libfdata/Makefile.in +0 -937
- libfsxfs-20240222/libfdata/libfdata_area.c +0 -1482
- libfsxfs-20240222/libfdata/libfdata_area.h +0 -278
- libfsxfs-20240222/libfdata/libfdata_cache.c +0 -59
- libfsxfs-20240222/libfdata/libfdata_cache.h +0 -56
- libfsxfs-20240222/libfdata/libfdata_definitions.h +0 -249
- libfsxfs-20240222/libfdata/libfdata_error.c +0 -111
- libfsxfs-20240222/libfdata/libfdata_error.h +0 -74
- libfsxfs-20240222/libfdata/libfdata_extern.h +0 -46
- libfsxfs-20240222/libfdata/libfdata_libcdata.h +0 -54
- libfsxfs-20240222/libfdata/libfdata_libcerror.h +0 -50
- libfsxfs-20240222/libfdata/libfdata_libcnotify.h +0 -50
- libfsxfs-20240222/libfdata/libfdata_libfcache.h +0 -50
- libfsxfs-20240222/libfdata/libfdata_list.c +0 -4426
- libfsxfs-20240222/libfdata/libfdata_list.h +0 -452
- libfsxfs-20240222/libfdata/libfdata_list_element.c +0 -824
- libfsxfs-20240222/libfdata/libfdata_list_element.h +0 -159
- libfsxfs-20240222/libfdata/libfdata_mapped_range.c +0 -312
- libfsxfs-20240222/libfdata/libfdata_mapped_range.h +0 -77
- libfsxfs-20240222/libfdata/libfdata_notify.c +0 -120
- libfsxfs-20240222/libfdata/libfdata_notify.h +0 -63
- libfsxfs-20240222/libfdata/libfdata_range.c +0 -358
- libfsxfs-20240222/libfdata/libfdata_range.h +0 -94
- libfsxfs-20240222/libfdata/libfdata_range_list.c +0 -1196
- libfsxfs-20240222/libfdata/libfdata_range_list.h +0 -214
- libfsxfs-20240222/libfdata/libfdata_segments_array.c +0 -914
- libfsxfs-20240222/libfdata/libfdata_segments_array.h +0 -94
- libfsxfs-20240222/libfdata/libfdata_stream.c +0 -2582
- libfsxfs-20240222/libfdata/libfdata_stream.h +0 -363
- libfsxfs-20240222/libfdata/libfdata_support.c +0 -41
- libfsxfs-20240222/libfdata/libfdata_support.h +0 -47
- libfsxfs-20240222/libfdata/libfdata_types.h +0 -59
- libfsxfs-20240222/libfdata/libfdata_unused.h +0 -44
- libfsxfs-20240222/libfdata/libfdata_vector.c +0 -1932
- libfsxfs-20240222/libfdata/libfdata_vector.h +0 -295
- libfsxfs-20240222/libfdatetime/Makefile.am +0 -38
- libfsxfs-20240222/libfdatetime/Makefile.in +0 -918
- libfsxfs-20240222/libfdatetime/libfdatetime_date_time_values.c +0 -1906
- libfsxfs-20240222/libfdatetime/libfdatetime_date_time_values.h +0 -121
- libfsxfs-20240222/libfdatetime/libfdatetime_definitions.h +0 -121
- libfsxfs-20240222/libfdatetime/libfdatetime_error.c +0 -111
- libfsxfs-20240222/libfdatetime/libfdatetime_error.h +0 -74
- libfsxfs-20240222/libfdatetime/libfdatetime_extern.h +0 -46
- libfsxfs-20240222/libfdatetime/libfdatetime_fat_date_time.c +0 -1258
- libfsxfs-20240222/libfdatetime/libfdatetime_fat_date_time.h +0 -172
- libfsxfs-20240222/libfdatetime/libfdatetime_filetime.c +0 -1465
- libfsxfs-20240222/libfdatetime/libfdatetime_filetime.h +0 -177
- libfsxfs-20240222/libfdatetime/libfdatetime_floatingtime.c +0 -1333
- libfsxfs-20240222/libfdatetime/libfdatetime_floatingtime.h +0 -168
- libfsxfs-20240222/libfdatetime/libfdatetime_hfs_time.c +0 -1329
- libfsxfs-20240222/libfdatetime/libfdatetime_hfs_time.h +0 -166
- libfsxfs-20240222/libfdatetime/libfdatetime_libcerror.h +0 -50
- libfsxfs-20240222/libfdatetime/libfdatetime_nsf_timedate.c +0 -1373
- libfsxfs-20240222/libfdatetime/libfdatetime_nsf_timedate.h +0 -177
- libfsxfs-20240222/libfdatetime/libfdatetime_posix_time.c +0 -1842
- libfsxfs-20240222/libfdatetime/libfdatetime_posix_time.h +0 -189
- libfsxfs-20240222/libfdatetime/libfdatetime_support.c +0 -41
- libfsxfs-20240222/libfdatetime/libfdatetime_support.h +0 -47
- libfsxfs-20240222/libfdatetime/libfdatetime_systemtime.c +0 -1779
- libfsxfs-20240222/libfdatetime/libfdatetime_systemtime.h +0 -180
- libfsxfs-20240222/libfdatetime/libfdatetime_types.h +0 -63
- libfsxfs-20240222/libfdatetime/libfdatetime_unused.h +0 -44
- libfsxfs-20240222/libfguid/Makefile.am +0 -31
- libfsxfs-20240222/libfguid/Makefile.in +0 -875
- libfsxfs-20240222/libfguid/libfguid_definitions.h +0 -84
- libfsxfs-20240222/libfguid/libfguid_error.c +0 -111
- libfsxfs-20240222/libfguid/libfguid_error.h +0 -74
- libfsxfs-20240222/libfguid/libfguid_extern.h +0 -46
- libfsxfs-20240222/libfguid/libfguid_identifier.c +0 -2524
- libfsxfs-20240222/libfguid/libfguid_identifier.h +0 -204
- libfsxfs-20240222/libfguid/libfguid_libcerror.h +0 -50
- libfsxfs-20240222/libfguid/libfguid_support.c +0 -41
- libfsxfs-20240222/libfguid/libfguid_support.h +0 -47
- libfsxfs-20240222/libfguid/libfguid_types.h +0 -47
- libfsxfs-20240222/libfguid/libfguid_unused.h +0 -44
- libfsxfs-20240222/libfsxfs/Makefile.am +0 -123
- libfsxfs-20240222/libfsxfs/Makefile.in +0 -1148
- libfsxfs-20240222/libfsxfs/fsxfs_attributes.h +0 -77
- libfsxfs-20240222/libfsxfs/fsxfs_attributes_block.h +0 -267
- libfsxfs-20240222/libfsxfs/fsxfs_block_directory.h +0 -97
- libfsxfs-20240222/libfsxfs/fsxfs_btree.h +0 -232
- libfsxfs-20240222/libfsxfs/fsxfs_file_system_block.h +0 -112
- libfsxfs-20240222/libfsxfs/fsxfs_inode.h +0 -528
- libfsxfs-20240222/libfsxfs/fsxfs_inode_information.h +0 -187
- libfsxfs-20240222/libfsxfs/fsxfs_superblock.h +0 -507
- libfsxfs-20240222/libfsxfs/libfsxfs.c +0 -80
- libfsxfs-20240222/libfsxfs/libfsxfs.rc +0 -38
- libfsxfs-20240222/libfsxfs/libfsxfs.rc.in +0 -38
- libfsxfs-20240222/libfsxfs/libfsxfs_attribute_values.c +0 -661
- libfsxfs-20240222/libfsxfs/libfsxfs_attribute_values.h +0 -119
- libfsxfs-20240222/libfsxfs/libfsxfs_attributes.c +0 -1334
- libfsxfs-20240222/libfsxfs/libfsxfs_attributes.h +0 -86
- libfsxfs-20240222/libfsxfs/libfsxfs_attributes_leaf_block_header.c +0 -308
- libfsxfs-20240222/libfsxfs/libfsxfs_attributes_leaf_block_header.h +0 -64
- libfsxfs-20240222/libfsxfs/libfsxfs_attributes_table.c +0 -491
- libfsxfs-20240222/libfsxfs/libfsxfs_attributes_table.h +0 -65
- libfsxfs-20240222/libfsxfs/libfsxfs_attributes_table_header.c +0 -225
- libfsxfs-20240222/libfsxfs/libfsxfs_attributes_table_header.h +0 -66
- libfsxfs-20240222/libfsxfs/libfsxfs_block_data_handle.c +0 -166
- libfsxfs-20240222/libfsxfs/libfsxfs_block_data_handle.h +0 -61
- libfsxfs-20240222/libfsxfs/libfsxfs_block_directory.c +0 -804
- libfsxfs-20240222/libfsxfs/libfsxfs_block_directory.h +0 -90
- libfsxfs-20240222/libfsxfs/libfsxfs_block_directory_footer.c +0 -227
- libfsxfs-20240222/libfsxfs/libfsxfs_block_directory_footer.h +0 -62
- libfsxfs-20240222/libfsxfs/libfsxfs_block_directory_header.c +0 -313
- libfsxfs-20240222/libfsxfs/libfsxfs_block_directory_header.h +0 -66
- libfsxfs-20240222/libfsxfs/libfsxfs_btree_block.c +0 -427
- libfsxfs-20240222/libfsxfs/libfsxfs_btree_block.h +0 -95
- libfsxfs-20240222/libfsxfs/libfsxfs_btree_header.c +0 -458
- libfsxfs-20240222/libfsxfs/libfsxfs_btree_header.h +0 -73
- libfsxfs-20240222/libfsxfs/libfsxfs_buffer_data_handle.c +0 -324
- libfsxfs-20240222/libfsxfs/libfsxfs_buffer_data_handle.h +0 -85
- libfsxfs-20240222/libfsxfs/libfsxfs_data_stream.c +0 -436
- libfsxfs-20240222/libfsxfs/libfsxfs_data_stream.h +0 -63
- libfsxfs-20240222/libfsxfs/libfsxfs_debug.c +0 -701
- libfsxfs-20240222/libfsxfs/libfsxfs_debug.h +0 -86
- libfsxfs-20240222/libfsxfs/libfsxfs_definitions.h +0 -116
- libfsxfs-20240222/libfsxfs/libfsxfs_definitions.h.in +0 -116
- libfsxfs-20240222/libfsxfs/libfsxfs_directory.c +0 -749
- libfsxfs-20240222/libfsxfs/libfsxfs_directory.h +0 -93
- libfsxfs-20240222/libfsxfs/libfsxfs_directory_entry.c +0 -500
- libfsxfs-20240222/libfsxfs/libfsxfs_directory_entry.h +0 -108
- libfsxfs-20240222/libfsxfs/libfsxfs_directory_table.c +0 -484
- libfsxfs-20240222/libfsxfs/libfsxfs_directory_table.h +0 -67
- libfsxfs-20240222/libfsxfs/libfsxfs_directory_table_header.c +0 -276
- libfsxfs-20240222/libfsxfs/libfsxfs_directory_table_header.h +0 -70
- libfsxfs-20240222/libfsxfs/libfsxfs_error.c +0 -111
- libfsxfs-20240222/libfsxfs/libfsxfs_error.h +0 -74
- libfsxfs-20240222/libfsxfs/libfsxfs_extended_attribute.c +0 -1185
- libfsxfs-20240222/libfsxfs/libfsxfs_extended_attribute.h +0 -177
- libfsxfs-20240222/libfsxfs/libfsxfs_extent.c +0 -361
- libfsxfs-20240222/libfsxfs/libfsxfs_extent.h +0 -83
- libfsxfs-20240222/libfsxfs/libfsxfs_extent_btree.c +0 -771
- libfsxfs-20240222/libfsxfs/libfsxfs_extent_btree.h +0 -92
- libfsxfs-20240222/libfsxfs/libfsxfs_extent_list.c +0 -168
- libfsxfs-20240222/libfsxfs/libfsxfs_extent_list.h +0 -49
- libfsxfs-20240222/libfsxfs/libfsxfs_extents.c +0 -315
- libfsxfs-20240222/libfsxfs/libfsxfs_extents.h +0 -54
- libfsxfs-20240222/libfsxfs/libfsxfs_extern.h +0 -46
- libfsxfs-20240222/libfsxfs/libfsxfs_file_entry.c +0 -3864
- libfsxfs-20240222/libfsxfs/libfsxfs_file_entry.h +0 -390
- libfsxfs-20240222/libfsxfs/libfsxfs_file_system.c +0 -1098
- libfsxfs-20240222/libfsxfs/libfsxfs_file_system.h +0 -109
- libfsxfs-20240222/libfsxfs/libfsxfs_file_system_block.c +0 -395
- libfsxfs-20240222/libfsxfs/libfsxfs_file_system_block.h +0 -82
- libfsxfs-20240222/libfsxfs/libfsxfs_file_system_block_header.c +0 -314
- libfsxfs-20240222/libfsxfs/libfsxfs_file_system_block_header.h +0 -72
- libfsxfs-20240222/libfsxfs/libfsxfs_inode.c +0 -1876
- libfsxfs-20240222/libfsxfs/libfsxfs_inode.h +0 -248
- libfsxfs-20240222/libfsxfs/libfsxfs_inode_btree.c +0 -926
- libfsxfs-20240222/libfsxfs/libfsxfs_inode_btree.h +0 -106
- libfsxfs-20240222/libfsxfs/libfsxfs_inode_btree_record.c +0 -231
- libfsxfs-20240222/libfsxfs/libfsxfs_inode_btree_record.h +0 -70
- libfsxfs-20240222/libfsxfs/libfsxfs_inode_information.c +0 -484
- libfsxfs-20240222/libfsxfs/libfsxfs_inode_information.h +0 -80
- libfsxfs-20240222/libfsxfs/libfsxfs_io_handle.c +0 -174
- libfsxfs-20240222/libfsxfs/libfsxfs_io_handle.h +0 -93
- libfsxfs-20240222/libfsxfs/libfsxfs_libbfio.h +0 -58
- libfsxfs-20240222/libfsxfs/libfsxfs_libcdata.h +0 -54
- libfsxfs-20240222/libfsxfs/libfsxfs_libcerror.h +0 -50
- libfsxfs-20240222/libfsxfs/libfsxfs_libclocale.h +0 -50
- libfsxfs-20240222/libfsxfs/libfsxfs_libcnotify.h +0 -50
- libfsxfs-20240222/libfsxfs/libfsxfs_libcthreads.h +0 -64
- libfsxfs-20240222/libfsxfs/libfsxfs_libfcache.h +0 -50
- libfsxfs-20240222/libfsxfs/libfsxfs_libfdata.h +0 -54
- libfsxfs-20240222/libfsxfs/libfsxfs_libfdatetime.h +0 -56
- libfsxfs-20240222/libfsxfs/libfsxfs_libfguid.h +0 -49
- libfsxfs-20240222/libfsxfs/libfsxfs_libuna.h +0 -60
- libfsxfs-20240222/libfsxfs/libfsxfs_notify.c +0 -120
- libfsxfs-20240222/libfsxfs/libfsxfs_notify.h +0 -63
- libfsxfs-20240222/libfsxfs/libfsxfs_superblock.c +0 -1051
- libfsxfs-20240222/libfsxfs/libfsxfs_superblock.h +0 -149
- libfsxfs-20240222/libfsxfs/libfsxfs_support.c +0 -430
- libfsxfs-20240222/libfsxfs/libfsxfs_support.h +0 -82
- libfsxfs-20240222/libfsxfs/libfsxfs_types.h +0 -51
- libfsxfs-20240222/libfsxfs/libfsxfs_unused.h +0 -44
- libfsxfs-20240222/libfsxfs/libfsxfs_volume.c +0 -2328
- libfsxfs-20240222/libfsxfs/libfsxfs_volume.h +0 -218
- libfsxfs-20240222/libfsxfs.pc.in +0 -12
- libfsxfs-20240222/libfsxfs.spec +0 -100
- libfsxfs-20240222/libfsxfs.spec.in +0 -100
- libfsxfs-20240222/libhmac/Makefile.am +0 -43
- libfsxfs-20240222/libhmac/Makefile.in +0 -929
- libfsxfs-20240222/libhmac/libhmac_byte_stream.h +0 -161
- libfsxfs-20240222/libhmac/libhmac_definitions.h +0 -56
- libfsxfs-20240222/libhmac/libhmac_error.c +0 -111
- libfsxfs-20240222/libhmac/libhmac_error.h +0 -74
- libfsxfs-20240222/libhmac/libhmac_extern.h +0 -46
- libfsxfs-20240222/libhmac/libhmac_libcerror.h +0 -50
- libfsxfs-20240222/libhmac/libhmac_md5.c +0 -715
- libfsxfs-20240222/libhmac/libhmac_md5.h +0 -84
- libfsxfs-20240222/libhmac/libhmac_md5_context.c +0 -1292
- libfsxfs-20240222/libhmac/libhmac_md5_context.h +0 -130
- libfsxfs-20240222/libhmac/libhmac_sha1.c +0 -715
- libfsxfs-20240222/libhmac/libhmac_sha1.h +0 -83
- libfsxfs-20240222/libhmac/libhmac_sha1_context.c +0 -1380
- libfsxfs-20240222/libhmac/libhmac_sha1_context.h +0 -130
- libfsxfs-20240222/libhmac/libhmac_sha224.c +0 -715
- libfsxfs-20240222/libhmac/libhmac_sha224.h +0 -83
- libfsxfs-20240222/libhmac/libhmac_sha224_context.c +0 -1348
- libfsxfs-20240222/libhmac/libhmac_sha224_context.h +0 -130
- libfsxfs-20240222/libhmac/libhmac_sha256.c +0 -715
- libfsxfs-20240222/libhmac/libhmac_sha256.h +0 -83
- libfsxfs-20240222/libhmac/libhmac_sha256_context.c +0 -1351
- libfsxfs-20240222/libhmac/libhmac_sha256_context.h +0 -130
- libfsxfs-20240222/libhmac/libhmac_sha512.c +0 -715
- libfsxfs-20240222/libhmac/libhmac_sha512.h +0 -83
- libfsxfs-20240222/libhmac/libhmac_sha512_context.c +0 -1387
- libfsxfs-20240222/libhmac/libhmac_sha512_context.h +0 -130
- libfsxfs-20240222/libhmac/libhmac_support.c +0 -39
- libfsxfs-20240222/libhmac/libhmac_support.h +0 -47
- libfsxfs-20240222/libhmac/libhmac_types.h +0 -55
- libfsxfs-20240222/libhmac/libhmac_unused.h +0 -44
- libfsxfs-20240222/libuna/Makefile.am +0 -91
- libfsxfs-20240222/libuna/Makefile.in +0 -1234
- libfsxfs-20240222/libuna/libuna_base16_stream.c +0 -1511
- libfsxfs-20240222/libuna/libuna_base16_stream.h +0 -93
- libfsxfs-20240222/libuna/libuna_base32_stream.c +0 -3035
- libfsxfs-20240222/libuna/libuna_base32_stream.h +0 -131
- libfsxfs-20240222/libuna/libuna_base64_stream.c +0 -2832
- libfsxfs-20240222/libuna/libuna_base64_stream.h +0 -131
- libfsxfs-20240222/libuna/libuna_byte_stream.c +0 -633
- libfsxfs-20240222/libuna/libuna_byte_stream.h +0 -104
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_10.c +0 -73
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_10.h +0 -48
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_13.c +0 -81
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_13.h +0 -48
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_14.c +0 -66
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_14.h +0 -51
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_15.c +0 -46
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_15.h +0 -45
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_16.c +0 -78
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_16.h +0 -57
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_2.c +0 -82
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_2.h +0 -51
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_3.c +0 -79
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_3.h +0 -57
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_4.c +0 -80
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_4.h +0 -48
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_5.c +0 -62
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_5.h +0 -45
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_6.c +0 -58
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_6.h +0 -45
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_7.c +0 -66
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_7.h +0 -48
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_8.c +0 -61
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_8.h +0 -48
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_9.c +0 -50
- libfsxfs-20240222/libuna/libuna_codepage_iso_8859_9.h +0 -45
- libfsxfs-20240222/libuna/libuna_codepage_koi8_r.c +0 -392
- libfsxfs-20240222/libuna/libuna_codepage_koi8_r.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_koi8_u.c +0 -424
- libfsxfs-20240222/libuna/libuna_codepage_koi8_u.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_mac_arabic.c +0 -352
- libfsxfs-20240222/libuna/libuna_codepage_mac_arabic.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_mac_celtic.c +0 -395
- libfsxfs-20240222/libuna/libuna_codepage_mac_celtic.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_mac_centraleurroman.c +0 -319
- libfsxfs-20240222/libuna/libuna_codepage_mac_centraleurroman.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_mac_croatian.c +0 -378
- libfsxfs-20240222/libuna/libuna_codepage_mac_croatian.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_mac_cyrillic.c +0 -325
- libfsxfs-20240222/libuna/libuna_codepage_mac_cyrillic.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_mac_dingbats.c +0 -347
- libfsxfs-20240222/libuna/libuna_codepage_mac_dingbats.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_mac_farsi.c +0 -372
- libfsxfs-20240222/libuna/libuna_codepage_mac_farsi.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_mac_gaelic.c +0 -437
- libfsxfs-20240222/libuna/libuna_codepage_mac_gaelic.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_mac_greek.c +0 -305
- libfsxfs-20240222/libuna/libuna_codepage_mac_greek.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_mac_icelandic.c +0 -381
- libfsxfs-20240222/libuna/libuna_codepage_mac_icelandic.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_mac_inuit.c +0 -380
- libfsxfs-20240222/libuna/libuna_codepage_mac_inuit.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_mac_roman.c +0 -387
- libfsxfs-20240222/libuna/libuna_codepage_mac_roman.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_mac_romanian.c +0 -396
- libfsxfs-20240222/libuna/libuna_codepage_mac_romanian.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_mac_russian.c +0 -317
- libfsxfs-20240222/libuna/libuna_codepage_mac_russian.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_mac_symbol.c +0 -537
- libfsxfs-20240222/libuna/libuna_codepage_mac_symbol.h +0 -59
- libfsxfs-20240222/libuna/libuna_codepage_mac_thai.c +0 -330
- libfsxfs-20240222/libuna/libuna_codepage_mac_thai.h +0 -59
- libfsxfs-20240222/libuna/libuna_codepage_mac_turkish.c +0 -397
- libfsxfs-20240222/libuna/libuna_codepage_mac_turkish.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_mac_ukrainian.c +0 -321
- libfsxfs-20240222/libuna/libuna_codepage_mac_ukrainian.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_windows_1250.c +0 -313
- libfsxfs-20240222/libuna/libuna_codepage_windows_1250.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_windows_1251.c +0 -301
- libfsxfs-20240222/libuna/libuna_codepage_windows_1251.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_windows_1252.c +0 -287
- libfsxfs-20240222/libuna/libuna_codepage_windows_1252.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_windows_1253.c +0 -291
- libfsxfs-20240222/libuna/libuna_codepage_windows_1253.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_windows_1254.c +0 -348
- libfsxfs-20240222/libuna/libuna_codepage_windows_1254.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_windows_1255.c +0 -328
- libfsxfs-20240222/libuna/libuna_codepage_windows_1255.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_windows_1256.c +0 -372
- libfsxfs-20240222/libuna/libuna_codepage_windows_1256.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_windows_1257.c +0 -303
- libfsxfs-20240222/libuna/libuna_codepage_windows_1257.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_windows_1258.c +0 -349
- libfsxfs-20240222/libuna/libuna_codepage_windows_1258.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_windows_874.c +0 -274
- libfsxfs-20240222/libuna/libuna_codepage_windows_874.h +0 -54
- libfsxfs-20240222/libuna/libuna_codepage_windows_932.c +0 -4913
- libfsxfs-20240222/libuna/libuna_codepage_windows_932.h +0 -59
- libfsxfs-20240222/libuna/libuna_codepage_windows_936.c +0 -7371
- libfsxfs-20240222/libuna/libuna_codepage_windows_936.h +0 -59
- libfsxfs-20240222/libuna/libuna_codepage_windows_949.c +0 -8168
- libfsxfs-20240222/libuna/libuna_codepage_windows_949.h +0 -59
- libfsxfs-20240222/libuna/libuna_codepage_windows_950.c +0 -6390
- libfsxfs-20240222/libuna/libuna_codepage_windows_950.h +0 -59
- libfsxfs-20240222/libuna/libuna_definitions.h +0 -436
- libfsxfs-20240222/libuna/libuna_error.c +0 -111
- libfsxfs-20240222/libuna/libuna_error.h +0 -74
- libfsxfs-20240222/libuna/libuna_extern.h +0 -46
- libfsxfs-20240222/libuna/libuna_libcerror.h +0 -50
- libfsxfs-20240222/libuna/libuna_scsu.c +0 -64
- libfsxfs-20240222/libuna/libuna_scsu.h +0 -45
- libfsxfs-20240222/libuna/libuna_support.c +0 -39
- libfsxfs-20240222/libuna/libuna_support.h +0 -49
- libfsxfs-20240222/libuna/libuna_types.h +0 -53
- libfsxfs-20240222/libuna/libuna_unicode_character.c +0 -5784
- libfsxfs-20240222/libuna/libuna_unicode_character.h +0 -260
- libfsxfs-20240222/libuna/libuna_unused.h +0 -44
- libfsxfs-20240222/libuna/libuna_url_stream.c +0 -584
- libfsxfs-20240222/libuna/libuna_url_stream.h +0 -71
- libfsxfs-20240222/libuna/libuna_utf16_stream.c +0 -815
- libfsxfs-20240222/libuna/libuna_utf16_stream.h +0 -109
- libfsxfs-20240222/libuna/libuna_utf16_string.c +0 -3950
- libfsxfs-20240222/libuna/libuna_utf16_string.h +0 -325
- libfsxfs-20240222/libuna/libuna_utf32_stream.c +0 -819
- libfsxfs-20240222/libuna/libuna_utf32_stream.h +0 -109
- libfsxfs-20240222/libuna/libuna_utf32_string.c +0 -3808
- libfsxfs-20240222/libuna/libuna_utf32_string.h +0 -321
- libfsxfs-20240222/libuna/libuna_utf7_stream.c +0 -628
- libfsxfs-20240222/libuna/libuna_utf7_stream.h +0 -98
- libfsxfs-20240222/libuna/libuna_utf8_stream.c +0 -748
- libfsxfs-20240222/libuna/libuna_utf8_stream.h +0 -105
- libfsxfs-20240222/libuna/libuna_utf8_string.c +0 -4092
- libfsxfs-20240222/libuna/libuna_utf8_string.h +0 -329
- libfsxfs-20240222/ltmain.sh +0 -11429
- libfsxfs-20240222/m4/common.m4 +0 -578
- libfsxfs-20240222/m4/libbfio.m4 +0 -419
- libfsxfs-20240222/m4/libcdata.m4 +0 -596
- libfsxfs-20240222/m4/libcerror.m4 +0 -234
- libfsxfs-20240222/m4/libcfile.m4 +0 -426
- libfsxfs-20240222/m4/libclocale.m4 +0 -288
- libfsxfs-20240222/m4/libcnotify.m4 +0 -206
- libfsxfs-20240222/m4/libcpath.m4 +0 -341
- libfsxfs-20240222/m4/libcrypto.m4 +0 -998
- libfsxfs-20240222/m4/libcsplit.m4 +0 -246
- libfsxfs-20240222/m4/libcthreads.m4 +0 -383
- libfsxfs-20240222/m4/libfcache.m4 +0 -263
- libfsxfs-20240222/m4/libfdata.m4 +0 -552
- libfsxfs-20240222/m4/libfdatetime.m4 +0 -557
- libfsxfs-20240222/m4/libfguid.m4 +0 -207
- libfsxfs-20240222/m4/libfuse.m4 +0 -202
- libfsxfs-20240222/m4/libhmac.m4 +0 -312
- libfsxfs-20240222/m4/libtool.m4 +0 -8403
- libfsxfs-20240222/m4/libuna.m4 +0 -1041
- libfsxfs-20240222/m4/pthread.m4 +0 -183
- libfsxfs-20240222/m4/python.m4 +0 -206
- libfsxfs-20240222/m4/tests.m4 +0 -33
- libfsxfs-20240222/m4/types.m4 +0 -133
- libfsxfs-20240222/manuals/Makefile.am +0 -16
- libfsxfs-20240222/manuals/Makefile.in +0 -823
- libfsxfs-20240222/manuals/fsxfsinfo.1 +0 -77
- libfsxfs-20240222/manuals/fsxfsmount.1 +0 -61
- libfsxfs-20240222/manuals/libfsxfs.3 +0 -225
- libfsxfs-20240222/msvscpp/Makefile.am +0 -56
- libfsxfs-20240222/msvscpp/Makefile.in +0 -739
- libfsxfs-20240222/msvscpp/fsxfsmount/fsxfsmount.vcproj +0 -300
- libfsxfs-20240222/msvscpp/libfsxfs/libfsxfs.vcproj +0 -584
- libfsxfs-20240222/msvscpp/libfsxfs.sln +0 -547
- libfsxfs-20240222/msvscpp/libhmac/libhmac.vcproj +0 -249
- libfsxfs-20240222/msvscpp/pyfsxfs/pyfsxfs.vcproj +0 -288
- libfsxfs-20240222/ossfuzz/Makefile.am +0 -87
- libfsxfs-20240222/ossfuzz/Makefile.in +0 -1011
- libfsxfs-20240222/ossfuzz/extended_attribute_fuzzer.cc +0 -138
- libfsxfs-20240222/ossfuzz/file_entry_fuzzer.cc +0 -239
- libfsxfs-20240222/ossfuzz/ossfuzz_libbfio.h +0 -58
- libfsxfs-20240222/ossfuzz/ossfuzz_libfsxfs.h +0 -30
- libfsxfs-20240222/ossfuzz/volume_fuzzer.cc +0 -119
- libfsxfs-20240222/po/Makevars +0 -45
- libfsxfs-20240222/pyfsxfs/Makefile.am +0 -56
- libfsxfs-20240222/pyfsxfs/Makefile.in +0 -1061
- libfsxfs-20240222/pyfsxfs/pyfsxfs.c +0 -714
- libfsxfs-20240222/pyfsxfs/pyfsxfs.h +0 -71
- libfsxfs-20240222/pyfsxfs/pyfsxfs_datetime.c +0 -691
- libfsxfs-20240222/pyfsxfs/pyfsxfs_datetime.h +0 -65
- libfsxfs-20240222/pyfsxfs/pyfsxfs_error.c +0 -422
- libfsxfs-20240222/pyfsxfs/pyfsxfs_error.h +0 -60
- libfsxfs-20240222/pyfsxfs/pyfsxfs_extended_attribute.c +0 -1299
- libfsxfs-20240222/pyfsxfs/pyfsxfs_extended_attribute.h +0 -110
- libfsxfs-20240222/pyfsxfs/pyfsxfs_extended_attributes.c +0 -452
- libfsxfs-20240222/pyfsxfs/pyfsxfs_extended_attributes.h +0 -95
- libfsxfs-20240222/pyfsxfs/pyfsxfs_file_entries.c +0 -452
- libfsxfs-20240222/pyfsxfs/pyfsxfs_file_entries.h +0 -95
- libfsxfs-20240222/pyfsxfs/pyfsxfs_file_entry.c +0 -3162
- libfsxfs-20240222/pyfsxfs/pyfsxfs_file_entry.h +0 -219
- libfsxfs-20240222/pyfsxfs/pyfsxfs_file_object_io_handle.c +0 -1524
- libfsxfs-20240222/pyfsxfs/pyfsxfs_file_object_io_handle.h +0 -141
- libfsxfs-20240222/pyfsxfs/pyfsxfs_integer.c +0 -399
- libfsxfs-20240222/pyfsxfs/pyfsxfs_integer.h +0 -56
- libfsxfs-20240222/pyfsxfs/pyfsxfs_libbfio.h +0 -54
- libfsxfs-20240222/pyfsxfs/pyfsxfs_libcerror.h +0 -50
- libfsxfs-20240222/pyfsxfs/pyfsxfs_libfsxfs.h +0 -30
- libfsxfs-20240222/pyfsxfs/pyfsxfs_python.h +0 -83
- libfsxfs-20240222/pyfsxfs/pyfsxfs_unused.h +0 -44
- libfsxfs-20240222/pyfsxfs/pyfsxfs_volume.c +0 -1202
- libfsxfs-20240222/pyfsxfs/pyfsxfs_volume.h +0 -103
- libfsxfs-20240222/pyproject.toml +0 -4
- libfsxfs-20240222/setup.cfg +0 -16
- libfsxfs-20240222/setup.cfg.in +0 -16
- libfsxfs-20240222/setup.py +0 -293
- libfsxfs-20240222/test-driver +0 -153
- libfsxfs-20240222/tests/Makefile.am +0 -451
- libfsxfs-20240222/tests/Makefile.in +0 -2058
- libfsxfs-20240222/tests/fsxfs_test_attribute_values.c +0 -951
- libfsxfs-20240222/tests/fsxfs_test_attributes_leaf_block_header.c +0 -543
- libfsxfs-20240222/tests/fsxfs_test_attributes_table.c +0 -561
- libfsxfs-20240222/tests/fsxfs_test_attributes_table_header.c +0 -474
- libfsxfs-20240222/tests/fsxfs_test_block_directory_footer.c +0 -474
- libfsxfs-20240222/tests/fsxfs_test_block_directory_header.c +0 -474
- libfsxfs-20240222/tests/fsxfs_test_btree_block.c +0 -901
- libfsxfs-20240222/tests/fsxfs_test_btree_header.c +0 -570
- libfsxfs-20240222/tests/fsxfs_test_buffer_data_handle.c +0 -114
- libfsxfs-20240222/tests/fsxfs_test_directory_entry.c +0 -311
- libfsxfs-20240222/tests/fsxfs_test_directory_table_header.c +0 -474
- libfsxfs-20240222/tests/fsxfs_test_error.c +0 -150
- libfsxfs-20240222/tests/fsxfs_test_extent.c +0 -311
- libfsxfs-20240222/tests/fsxfs_test_file_system_block_header.c +0 -545
- libfsxfs-20240222/tests/fsxfs_test_functions.c +0 -672
- libfsxfs-20240222/tests/fsxfs_test_functions.h +0 -72
- libfsxfs-20240222/tests/fsxfs_test_getopt.c +0 -190
- libfsxfs-20240222/tests/fsxfs_test_getopt.h +0 -68
- libfsxfs-20240222/tests/fsxfs_test_inode_btree.c +0 -311
- libfsxfs-20240222/tests/fsxfs_test_inode_btree_record.c +0 -474
- libfsxfs-20240222/tests/fsxfs_test_inode_information.c +0 -883
- libfsxfs-20240222/tests/fsxfs_test_io_handle.c +0 -443
- libfsxfs-20240222/tests/fsxfs_test_libbfio.h +0 -58
- libfsxfs-20240222/tests/fsxfs_test_libcdata.h +0 -54
- libfsxfs-20240222/tests/fsxfs_test_libcerror.h +0 -50
- libfsxfs-20240222/tests/fsxfs_test_libclocale.h +0 -50
- libfsxfs-20240222/tests/fsxfs_test_libcnotify.h +0 -50
- libfsxfs-20240222/tests/fsxfs_test_libfsxfs.h +0 -30
- libfsxfs-20240222/tests/fsxfs_test_libuna.h +0 -60
- libfsxfs-20240222/tests/fsxfs_test_macros.h +0 -257
- libfsxfs-20240222/tests/fsxfs_test_memory.c +0 -177
- libfsxfs-20240222/tests/fsxfs_test_memory.h +0 -52
- libfsxfs-20240222/tests/fsxfs_test_notify.c +0 -229
- libfsxfs-20240222/tests/fsxfs_test_superblock.c +0 -750
- libfsxfs-20240222/tests/fsxfs_test_support.c +0 -833
- libfsxfs-20240222/tests/fsxfs_test_tools_info_handle.c +0 -304
- libfsxfs-20240222/tests/fsxfs_test_tools_output.c +0 -105
- libfsxfs-20240222/tests/fsxfs_test_tools_signal.c +0 -213
- libfsxfs-20240222/tests/fsxfs_test_unused.h +0 -50
- libfsxfs-20240222/tests/fsxfs_test_volume.c +0 -1529
- libfsxfs-20240222/tests/pyfsxfs_test_support.py +0 -111
- libfsxfs-20240222/tests/pyfsxfs_test_volume.py +0 -300
- libfsxfs-20240222/tests/test_fsxfsinfo.sh +0 -149
- libfsxfs-20240222/tests/test_library.sh +0 -196
- libfsxfs-20240222/tests/test_manpage.sh +0 -101
- libfsxfs-20240222/tests/test_python_module.sh +0 -187
- libfsxfs-20240222/tests/test_runner.sh +0 -1148
- libfsxfs-20240222/tests/test_tools.sh +0 -196
- {libfsxfs-20240222 → libfsxfs_python-20260701}/ABOUT-NLS +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/COPYING +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/COPYING.LESSER +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/ChangeLog +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/NEWS +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/compile +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/config.rpath +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/depcomp +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/dpkg/changelog.in +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/dpkg/libfsxfs-dev.install +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/dpkg/libfsxfs-python3.install +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/dpkg/libfsxfs-tools.install +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/dpkg/libfsxfs.install +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/dpkg/source/format +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/install-sh +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/m4/gettext.m4 +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/m4/host-cpu-c-abi.m4 +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/m4/iconv.m4 +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/m4/intlmacosx.m4 +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/m4/lib-ld.m4 +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/m4/lib-link.m4 +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/m4/lib-prefix.m4 +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/m4/nls.m4 +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/m4/po.m4 +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/m4/progtest.m4 +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/missing +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_attribute_values/fsxfs_test_attribute_values.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_attributes_leaf_block_header/fsxfs_test_attributes_leaf_block_header.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_attributes_table/fsxfs_test_attributes_table.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_attributes_table_header/fsxfs_test_attributes_table_header.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_block_directory_footer/fsxfs_test_block_directory_footer.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_block_directory_header/fsxfs_test_block_directory_header.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_btree_block/fsxfs_test_btree_block.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_btree_header/fsxfs_test_btree_header.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_buffer_data_handle/fsxfs_test_buffer_data_handle.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_directory_entry/fsxfs_test_directory_entry.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_directory_table_header/fsxfs_test_directory_table_header.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_error/fsxfs_test_error.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_extent/fsxfs_test_extent.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_file_system_block_header/fsxfs_test_file_system_block_header.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_inode_btree/fsxfs_test_inode_btree.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_inode_btree_record/fsxfs_test_inode_btree_record.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_inode_information/fsxfs_test_inode_information.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_io_handle/fsxfs_test_io_handle.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_notify/fsxfs_test_notify.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_superblock/fsxfs_test_superblock.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_support/fsxfs_test_support.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_tools_info_handle/fsxfs_test_tools_info_handle.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_tools_output/fsxfs_test_tools_output.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_tools_signal/fsxfs_test_tools_signal.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfs_test_volume/fsxfs_test_volume.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/fsxfsinfo/fsxfsinfo.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/libbfio/libbfio.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/libcdata/libcdata.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/libcerror/libcerror.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/libcfile/libcfile.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/libclocale/libclocale.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/libcnotify/libcnotify.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/libcpath/libcpath.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/libcsplit/libcsplit.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/libcthreads/libcthreads.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/libfcache/libfcache.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/libfdata/libfdata.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/libfdatetime/libfdatetime.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/libfguid/libfguid.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/msvscpp/libuna/libuna.vcproj +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/po/ChangeLog +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/po/Makefile.in.in +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/po/Makevars.in +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/po/POTFILES.in +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/po/Rules-quot +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/po/boldquot.sed +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/po/en@boldquot.header +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/po/en@quot.header +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/po/insert-header.sin +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/po/quot.sed +0 -0
- {libfsxfs-20240222 → libfsxfs_python-20260701}/po/remove-potcdate.sin +0 -0
|
File without changes
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
ACLOCAL_AMFLAGS = -I m4
|
|
2
|
+
|
|
3
|
+
SUBDIRS = \
|
|
4
|
+
include \
|
|
5
|
+
common \
|
|
6
|
+
libcerror \
|
|
7
|
+
libcthreads \
|
|
8
|
+
libcdata \
|
|
9
|
+
libclocale \
|
|
10
|
+
libcnotify \
|
|
11
|
+
libcsplit \
|
|
12
|
+
libuna \
|
|
13
|
+
libcfile \
|
|
14
|
+
libcpath \
|
|
15
|
+
libbfio \
|
|
16
|
+
libfcache \
|
|
17
|
+
libfdata \
|
|
18
|
+
libfdatetime \
|
|
19
|
+
libfguid \
|
|
20
|
+
libfsxfs \
|
|
21
|
+
libhmac \
|
|
22
|
+
fsxfstools \
|
|
23
|
+
pyfsxfs \
|
|
24
|
+
po \
|
|
25
|
+
manuals \
|
|
26
|
+
tests \
|
|
27
|
+
ossfuzz \
|
|
28
|
+
msvscpp
|
|
29
|
+
|
|
30
|
+
DPKG_FILES = \
|
|
31
|
+
dpkg/changelog \
|
|
32
|
+
dpkg/changelog.in \
|
|
33
|
+
dpkg/compat \
|
|
34
|
+
dpkg/control \
|
|
35
|
+
dpkg/copyright \
|
|
36
|
+
dpkg/rules \
|
|
37
|
+
dpkg/libfsxfs.install \
|
|
38
|
+
dpkg/libfsxfs-dev.install \
|
|
39
|
+
dpkg/libfsxfs-python3.install \
|
|
40
|
+
dpkg/libfsxfs-tools.install \
|
|
41
|
+
dpkg/source/format
|
|
42
|
+
|
|
43
|
+
GETTEXT_FILES = \
|
|
44
|
+
config.rpath \
|
|
45
|
+
po/Makevars.in
|
|
46
|
+
|
|
47
|
+
PKGCONFIG_FILES = \
|
|
48
|
+
libfsxfs.pc.in
|
|
49
|
+
|
|
50
|
+
SETUP_PY_FILES = \
|
|
51
|
+
_build.py \
|
|
52
|
+
pyproject.toml \
|
|
53
|
+
pyproject.toml.in
|
|
54
|
+
|
|
55
|
+
SPEC_FILES = \
|
|
56
|
+
libfsxfs.spec \
|
|
57
|
+
libfsxfs.spec.in
|
|
58
|
+
|
|
59
|
+
EXTRA_DIST = \
|
|
60
|
+
$(DPKG_FILES) \
|
|
61
|
+
$(GETTEXT_FILES) \
|
|
62
|
+
$(PKGCONFIG_FILES) \
|
|
63
|
+
$(SETUP_PY_FILES) \
|
|
64
|
+
$(SPEC_FILES)
|
|
65
|
+
|
|
66
|
+
DISTCLEANFILES = \
|
|
67
|
+
config.status \
|
|
68
|
+
config.cache \
|
|
69
|
+
config.log \
|
|
70
|
+
libfsxfs.pc \
|
|
71
|
+
libfsxfs.spec \
|
|
72
|
+
Makefile \
|
|
73
|
+
Makefile.in \
|
|
74
|
+
po/Makevars
|
|
75
|
+
|
|
76
|
+
pkgconfigdir = $(libdir)/pkgconfig
|
|
77
|
+
|
|
78
|
+
pkgconfig_DATA = \
|
|
79
|
+
libfsxfs.pc
|
|
80
|
+
|
|
81
|
+
check-build: all
|
|
82
|
+
cd $(srcdir)/tests && $(MAKE) check-build $(AM_MAKEFLAGS)
|
|
83
|
+
|
|
84
|
+
libtool: @LIBTOOL_DEPS@
|
|
85
|
+
cd $(srcdir) && $(SHELL) ./config.status --recheck
|
|
86
|
+
|
|
87
|
+
lib: library
|
|
88
|
+
|
|
89
|
+
library:
|
|
90
|
+
(cd $(srcdir)/common && $(MAKE) $(AM_MAKEFLAGS))
|
|
91
|
+
(cd $(srcdir)/libcerror && $(MAKE) $(AM_MAKEFLAGS))
|
|
92
|
+
(cd $(srcdir)/libcthreads && $(MAKE) $(AM_MAKEFLAGS))
|
|
93
|
+
(cd $(srcdir)/libcdata && $(MAKE) $(AM_MAKEFLAGS))
|
|
94
|
+
(cd $(srcdir)/libclocale && $(MAKE) $(AM_MAKEFLAGS))
|
|
95
|
+
(cd $(srcdir)/libcnotify && $(MAKE) $(AM_MAKEFLAGS))
|
|
96
|
+
(cd $(srcdir)/libcsplit && $(MAKE) $(AM_MAKEFLAGS))
|
|
97
|
+
(cd $(srcdir)/libuna && $(MAKE) $(AM_MAKEFLAGS))
|
|
98
|
+
(cd $(srcdir)/libcfile && $(MAKE) $(AM_MAKEFLAGS))
|
|
99
|
+
(cd $(srcdir)/libcpath && $(MAKE) $(AM_MAKEFLAGS))
|
|
100
|
+
(cd $(srcdir)/libbfio && $(MAKE) $(AM_MAKEFLAGS))
|
|
101
|
+
(cd $(srcdir)/libfcache && $(MAKE) $(AM_MAKEFLAGS))
|
|
102
|
+
(cd $(srcdir)/libfdata && $(MAKE) $(AM_MAKEFLAGS))
|
|
103
|
+
(cd $(srcdir)/libfdatetime && $(MAKE) $(AM_MAKEFLAGS))
|
|
104
|
+
(cd $(srcdir)/libfguid && $(MAKE) $(AM_MAKEFLAGS))
|
|
105
|
+
(cd $(srcdir)/libfsxfs && $(MAKE) $(AM_MAKEFLAGS))
|
|
106
|
+
(cd $(srcdir)/po && $(MAKE) $(AM_MAKEFLAGS))
|
|
107
|
+
|