Files
ibuild/src/config.h
0x221E 1b889b7625 Feature: Add command execution on child processes feature
Temporary: Add configuration sample for forward compatibility
2026-01-17 18:21:08 +01:00

16 lines
210 B
C

#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