bootstrap/include/evaluator.h

15 lines
286 B
C
Raw Normal View History

#ifndef _BOOTSTRAP_EVALUATOR_H
#define _BOOTSTRAP_EVALUATOR_H
#include "config.h"
#include "error.h"
#include "validator.h"
int evaluate_run_sh(
const struct Config *const config,
2023-11-25 17:37:41 +00:00
const struct DynArray *const fields,
struct Error **error
);
#endif /* _BOOTSTRAP_EVALUATOR_H */