blob: d6a9370d34b9e4d8f1c7b7b1a2f7856bfa97fd62 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// SPDX-FileCopyrightText: 2014-2024 Rafael G. Martins <rafael@rafaelmartins.eng.br>
// SPDX-License-Identifier: BSD-3-Clause
#pragma once
#include "../common/utils.h"
#include "ctx.h"
#include "rules.h"
int bm_reloader_run(bm_ctx_t **ctx, bm_rule_exec_func_t rule_exec,
bc_slist_t *outputs, bc_trie_t *args);
void bm_reloader_stop(int status_code);
|