Feature: Add command execution on child processes feature

Temporary: Add configuration sample for forward compatibility
This commit is contained in:
0x221E
2026-01-17 18:21:08 +01:00
parent e61af99a0c
commit 1b889b7625
6 changed files with 114 additions and 6 deletions

15
src/config.h Normal file
View File

@@ -0,0 +1,15 @@
#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