bootstrap/include/evaluator.h

13 lines
274 B
C
Raw Normal View History

#ifndef _BOOTSTRAP_EVALUATOR_H
#define _BOOTSTRAP_EVALUATOR_H
#include "config.h"
#include "error.h"
#include "validator.h"
struct Error *evaluate_spec_json(
const struct Config *const config, const struct DynArray *const prompts
);
#endif /* _BOOTSTRAP_EVALUATOR_H */