evmc/examples/example_vm.h

23 lines
371 B
C
Raw Normal View History

/* EVMC: Ethereum Client-VM Connector API.
* Copyright 2018-2019 The EVMC Authors.
* Licensed under the Apache License, Version 2.0.
*/
#pragma once
2018-04-18 14:22:24 +00:00
#include <evmc/evmc.h>
2018-06-25 16:39:34 +00:00
#include <evmc/utils.h>
#ifdef __cplusplus
extern "C" {
#endif
/**
* Creates EVMC Example VM.
*/
2018-08-30 16:27:44 +00:00
EVMC_EXPORT struct evmc_instance* evmc_create_example_vm(void);
#ifdef __cplusplus
}
#endif