mirror of
https://github.com/status-im/evmc.git
synced 2025-02-24 08:58:12 +00:00
23 lines
388 B
C
23 lines
388 B
C
/* EVMC: Ethereum Client-VM Connector API.
|
|
* Copyright 2018 The EVMC Authors.
|
|
* Licensed under the Apache License, Version 2.0. See the LICENSE file.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <evmc/evmc.h>
|
|
#include <evmc/utils.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* Creates EVMC Example VM.
|
|
*/
|
|
EVMC_EXPORT struct evmc_instance* evmc_create_example_vm(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|