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