diff options
| author | Felix Morgner <felix.morgner@gmail.com> | 2026-06-04 18:14:19 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@gmail.com> | 2026-06-04 18:14:19 +0200 |
| commit | a95acc4d382cbb4937097e7fa2f6526974a26fcc (patch) | |
| tree | 71b922a413fad15d4796ee613a91240f4ae59df0 /cabinet/main.cpp | |
| parent | 0ff3f826d9772d3695f481e0a3d0bc1517dd3ae4 (diff) | |
| download | cabinet-a95acc4d382cbb4937097e7fa2f6526974a26fcc.tar.xz cabinet-a95acc4d382cbb4937097e7fa2f6526974a26fcc.zip | |
core: add basic libmagic abstraction skeleton
Diffstat (limited to 'cabinet/main.cpp')
| -rw-r--r-- | cabinet/main.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/cabinet/main.cpp b/cabinet/main.cpp index 09509dd..26dd690 100644 --- a/cabinet/main.cpp +++ b/cabinet/main.cpp @@ -1,2 +1,6 @@ -auto main() -> int { +#include <cabinet/magic.hpp> + +auto main() -> int +{ + [[maybe_unused]] auto magic = cab::magic{cab::magic::flags::print_debug | cab::magic::flags::follow_symlinks}; } |
