1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-02-13 03:32:22 +00:00
ton/crypto/vm/utils.h

12 lines
279 B
C
Raw Normal View History

#pragma once
#include "stack.hpp"
#include <vector>
namespace vm {
td::Result<std::vector<vm::StackEntry>> parse_stack_entries(td::Slice str, bool prefix_only = false);
td::Result<vm::StackEntry> parse_stack_entry(td::Slice str, bool prefix_only = false);
} // namespace vm