aboutsummaryrefslogtreecommitdiff
path: root/private_include/nw/stack.h
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2024-09-07 00:04:38 +0200
committerXavier Del Campo Romero <xavi92@disroot.org>2025-11-06 14:38:40 +0100
commit6d9d80362f9932bbc87e162b8ef7df06c73e27e1 (patch)
treee3e228c63fe26f07503f226de7fb5086b3dc2286 /private_include/nw/stack.h
downloadnanowasm-6d9d80362f9932bbc87e162b8ef7df06c73e27e1.tar.gz
First commit
Diffstat (limited to 'private_include/nw/stack.h')
-rw-r--r--private_include/nw/stack.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/private_include/nw/stack.h b/private_include/nw/stack.h
new file mode 100644
index 0000000..332b4f5
--- /dev/null
+++ b/private_include/nw/stack.h
@@ -0,0 +1,24 @@
+/*
+ * 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 STACK_H
+#define STACK_H
+
+#include <nanowasm/nw.h>
+#include <stddef.h>
+
+size_t nwp_stack_ptr(const struct nw_interp *i);
+enum nw_state nwp_stack_push(struct nw_interp *i, struct nw_sm_io *io);
+enum nw_state nwp_stack_pop(struct nw_interp *i, struct nw_sm_io *io);
+enum nw_state nwp_stack_read(struct nw_interp *i, struct nw_sm_io *io,
+ size_t offset);
+enum nw_state nwp_stack_write(struct nw_interp *i, struct nw_sm_io *io,
+ size_t offset);
+
+#endif