Files
ibuild/src/config.h

16 lines
210 B
C
Raw Normal View History

#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