#ifndef CONFIG_H #define CONFIG_H #include "string.h" struct Configuration { StringView compiler_path; StringView src_dir; StringView* src_files; }; typedef struct Configuration Configuration; #endif