blob: 1597fc986a5e3555b0aec8d1fda79e02b8b3fc42 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#ifndef __LOAD_H__
#define __LOAD_H__
#include <string>
#include "programs.h"
using namespace std;
void add_dir(string directory, bool complain=true);
void read_config(const char *cfg, bool complain=true);
bool load_program(string file, program_t& prog);
#endif
|