diff options
Diffstat (limited to 'private_include/nw/inst.h')
| -rw-r--r-- | private_include/nw/inst.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/private_include/nw/inst.h b/private_include/nw/inst.h new file mode 100644 index 0000000..3a68440 --- /dev/null +++ b/private_include/nw/inst.h @@ -0,0 +1,17 @@ +/* + * nanowasm, a tiny WebAssembly/Wasm interpreter + * Copyright (C) 2023-2025 Xavier Del Campo Romero + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. + */ + +#ifndef INST_H +#define INST_H + +#include <nanowasm/nw.h> + +enum nw_state nwp_inst_run(struct nw_inst *i); + +#endif |
