├── .codecov.yml ├── .github └── workflows │ ├── build.yml │ ├── build_freebsd.yml │ ├── build_macos.yml │ └── build_shared.yml ├── .gitignore ├── AUTHORS ├── COPYING ├── COPYING.LESSER ├── ChangeLog ├── Makefile.am ├── NEWS ├── README ├── acinclude.m4 ├── appveyor.yml ├── autogen.ps1 ├── autogen.sh ├── common ├── Makefile.am ├── byte_stream.h ├── common.h ├── config_borlandc.h ├── config_msc.h ├── config_winapi.h ├── file_stream.h ├── memory.h ├── narrow_string.h ├── system_string.h ├── types.h.in └── wide_string.h ├── configure.ac ├── documentation └── OLE definitions.asciidoc ├── dpkg ├── changelog.in ├── compat ├── control ├── copyright ├── libfole-dev.install ├── libfole.install ├── rules └── source │ └── format ├── include ├── Makefile.am ├── libfole.h.in └── libfole │ ├── definitions.h.in │ ├── error.h │ ├── extern.h │ ├── features.h.in │ └── types.h.in ├── libfole.ini ├── libfole.pc.in ├── libfole.spec.in ├── libfole ├── Makefile.am ├── libfole.c ├── libfole.rc.in ├── libfole_definitions.h.in ├── libfole_error.c ├── libfole_error.h ├── libfole_extern.h ├── libfole_libcerror.h ├── libfole_support.c ├── libfole_support.h ├── libfole_types.h ├── libfole_unused.h ├── libfole_value_type.c └── libfole_value_type.h ├── m4 ├── common.m4 ├── libcerror.m4 ├── tests.m4 └── types.m4 ├── manuals ├── Makefile.am └── libfole.3 ├── msvscpp ├── Makefile.am ├── fole_test_error │ └── fole_test_error.vcproj ├── fole_test_support │ └── fole_test_support.vcproj ├── fole_test_value_type │ └── fole_test_value_type.vcproj ├── libcerror │ └── libcerror.vcproj ├── libfole.sln └── libfole │ └── libfole.vcproj ├── po ├── ChangeLog ├── Makevars.in └── POTFILES.in ├── runtests.ps1 ├── runtests.sh ├── synclibs.ps1 ├── synclibs.sh └── tests ├── Makefile.am ├── build.sh ├── fole_test_error.c ├── fole_test_libcerror.h ├── fole_test_libfole.h ├── fole_test_macros.h ├── fole_test_memory.c ├── fole_test_memory.h ├── fole_test_support.c ├── fole_test_unused.h ├── fole_test_value_type.c ├── lsan.suppressions ├── pkgbuild.sh ├── runtests.sh ├── syncsharedlibs.sh ├── test_library.ps1 ├── test_library.sh ├── test_manpage.sh └── test_runner.sh /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/build_freebsd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/.github/workflows/build_freebsd.yml -------------------------------------------------------------------------------- /.github/workflows/build_macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/.github/workflows/build_macos.yml -------------------------------------------------------------------------------- /.github/workflows/build_shared.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/.github/workflows/build_shared.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/ChangeLog -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/README -------------------------------------------------------------------------------- /acinclude.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/acinclude.m4 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/appveyor.yml -------------------------------------------------------------------------------- /autogen.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/autogen.ps1 -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/autogen.sh -------------------------------------------------------------------------------- /common/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/common/Makefile.am -------------------------------------------------------------------------------- /common/byte_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/common/byte_stream.h -------------------------------------------------------------------------------- /common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/common/common.h -------------------------------------------------------------------------------- /common/config_borlandc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/common/config_borlandc.h -------------------------------------------------------------------------------- /common/config_msc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/common/config_msc.h -------------------------------------------------------------------------------- /common/config_winapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/common/config_winapi.h -------------------------------------------------------------------------------- /common/file_stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/common/file_stream.h -------------------------------------------------------------------------------- /common/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/common/memory.h -------------------------------------------------------------------------------- /common/narrow_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/common/narrow_string.h -------------------------------------------------------------------------------- /common/system_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/common/system_string.h -------------------------------------------------------------------------------- /common/types.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/common/types.h.in -------------------------------------------------------------------------------- /common/wide_string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/common/wide_string.h -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/configure.ac -------------------------------------------------------------------------------- /documentation/OLE definitions.asciidoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/documentation/OLE definitions.asciidoc -------------------------------------------------------------------------------- /dpkg/changelog.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/dpkg/changelog.in -------------------------------------------------------------------------------- /dpkg/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /dpkg/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/dpkg/control -------------------------------------------------------------------------------- /dpkg/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/dpkg/copyright -------------------------------------------------------------------------------- /dpkg/libfole-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/dpkg/libfole-dev.install -------------------------------------------------------------------------------- /dpkg/libfole.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/dpkg/libfole.install -------------------------------------------------------------------------------- /dpkg/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/dpkg/rules -------------------------------------------------------------------------------- /dpkg/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/libfole.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/include/libfole.h.in -------------------------------------------------------------------------------- /include/libfole/definitions.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/include/libfole/definitions.h.in -------------------------------------------------------------------------------- /include/libfole/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/include/libfole/error.h -------------------------------------------------------------------------------- /include/libfole/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/include/libfole/extern.h -------------------------------------------------------------------------------- /include/libfole/features.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/include/libfole/features.h.in -------------------------------------------------------------------------------- /include/libfole/types.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/include/libfole/types.h.in -------------------------------------------------------------------------------- /libfole.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/libfole.ini -------------------------------------------------------------------------------- /libfole.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/libfole.pc.in -------------------------------------------------------------------------------- /libfole.spec.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/libfole.spec.in -------------------------------------------------------------------------------- /libfole/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/libfole/Makefile.am -------------------------------------------------------------------------------- /libfole/libfole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/libfole/libfole.c -------------------------------------------------------------------------------- /libfole/libfole.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/libfole/libfole.rc.in -------------------------------------------------------------------------------- /libfole/libfole_definitions.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/libfole/libfole_definitions.h.in -------------------------------------------------------------------------------- /libfole/libfole_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/libfole/libfole_error.c -------------------------------------------------------------------------------- /libfole/libfole_error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/libfole/libfole_error.h -------------------------------------------------------------------------------- /libfole/libfole_extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/libfole/libfole_extern.h -------------------------------------------------------------------------------- /libfole/libfole_libcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/libfole/libfole_libcerror.h -------------------------------------------------------------------------------- /libfole/libfole_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/libfole/libfole_support.c -------------------------------------------------------------------------------- /libfole/libfole_support.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/libfole/libfole_support.h -------------------------------------------------------------------------------- /libfole/libfole_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/libfole/libfole_types.h -------------------------------------------------------------------------------- /libfole/libfole_unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/libfole/libfole_unused.h -------------------------------------------------------------------------------- /libfole/libfole_value_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/libfole/libfole_value_type.c -------------------------------------------------------------------------------- /libfole/libfole_value_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/libfole/libfole_value_type.h -------------------------------------------------------------------------------- /m4/common.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/m4/common.m4 -------------------------------------------------------------------------------- /m4/libcerror.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/m4/libcerror.m4 -------------------------------------------------------------------------------- /m4/tests.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/m4/tests.m4 -------------------------------------------------------------------------------- /m4/types.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/m4/types.m4 -------------------------------------------------------------------------------- /manuals/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/manuals/Makefile.am -------------------------------------------------------------------------------- /manuals/libfole.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/manuals/libfole.3 -------------------------------------------------------------------------------- /msvscpp/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/msvscpp/Makefile.am -------------------------------------------------------------------------------- /msvscpp/fole_test_error/fole_test_error.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/msvscpp/fole_test_error/fole_test_error.vcproj -------------------------------------------------------------------------------- /msvscpp/fole_test_support/fole_test_support.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/msvscpp/fole_test_support/fole_test_support.vcproj -------------------------------------------------------------------------------- /msvscpp/fole_test_value_type/fole_test_value_type.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/msvscpp/fole_test_value_type/fole_test_value_type.vcproj -------------------------------------------------------------------------------- /msvscpp/libcerror/libcerror.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/msvscpp/libcerror/libcerror.vcproj -------------------------------------------------------------------------------- /msvscpp/libfole.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/msvscpp/libfole.sln -------------------------------------------------------------------------------- /msvscpp/libfole/libfole.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/msvscpp/libfole/libfole.vcproj -------------------------------------------------------------------------------- /po/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/po/ChangeLog -------------------------------------------------------------------------------- /po/Makevars.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/po/Makevars.in -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- 1 | # List of source files which contain translatable strings. 2 | -------------------------------------------------------------------------------- /runtests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/runtests.ps1 -------------------------------------------------------------------------------- /runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/runtests.sh -------------------------------------------------------------------------------- /synclibs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/synclibs.ps1 -------------------------------------------------------------------------------- /synclibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/synclibs.sh -------------------------------------------------------------------------------- /tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/tests/Makefile.am -------------------------------------------------------------------------------- /tests/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/tests/build.sh -------------------------------------------------------------------------------- /tests/fole_test_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/tests/fole_test_error.c -------------------------------------------------------------------------------- /tests/fole_test_libcerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/tests/fole_test_libcerror.h -------------------------------------------------------------------------------- /tests/fole_test_libfole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/tests/fole_test_libfole.h -------------------------------------------------------------------------------- /tests/fole_test_macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/tests/fole_test_macros.h -------------------------------------------------------------------------------- /tests/fole_test_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/tests/fole_test_memory.c -------------------------------------------------------------------------------- /tests/fole_test_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/tests/fole_test_memory.h -------------------------------------------------------------------------------- /tests/fole_test_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/tests/fole_test_support.c -------------------------------------------------------------------------------- /tests/fole_test_unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/tests/fole_test_unused.h -------------------------------------------------------------------------------- /tests/fole_test_value_type.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/tests/fole_test_value_type.c -------------------------------------------------------------------------------- /tests/lsan.suppressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/tests/lsan.suppressions -------------------------------------------------------------------------------- /tests/pkgbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/tests/pkgbuild.sh -------------------------------------------------------------------------------- /tests/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/tests/runtests.sh -------------------------------------------------------------------------------- /tests/syncsharedlibs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/tests/syncsharedlibs.sh -------------------------------------------------------------------------------- /tests/test_library.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/tests/test_library.ps1 -------------------------------------------------------------------------------- /tests/test_library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/tests/test_library.sh -------------------------------------------------------------------------------- /tests/test_manpage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/tests/test_manpage.sh -------------------------------------------------------------------------------- /tests/test_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libyal/libfole/HEAD/tests/test_runner.sh --------------------------------------------------------------------------------