Building support and size support.

This commit is contained in:
2026-07-21 23:40:50 -04:00
parent 68969322d0
commit 1a1364ec7c
4 changed files with 41 additions and 12 deletions
+6
View File
@@ -3,10 +3,16 @@
#include <string>
#include <filesystem>
namespace C
{
constexpr int filePadding= 3;
}
struct Entry
{
std::string name;
std::string perms;
std::size_t size;
bool is_dir;
bool is_exe;
};