the first version of c backend

This commit is contained in:
vms
2019-08-20 13:46:02 +02:00
parent cd7a0ba9cc
commit 34815dc578
16 changed files with 1257 additions and 0 deletions

12
backend-c/sdk/logger.h Normal file
View File

@ -0,0 +1,12 @@
#ifndef FLUENCE_C_SDK_LOGGER_H
#define FLUENCE_C_SDK_LOGGER_H
/**
* Writes provided string to Wasm VM logger.
*
* @param str a pointer to a message that should be logged.
* @param len a size of a message that should be logged.
*/
void wasm_log(const char *str, int len);
#endif //FLUENCE_C_SDK_LOGGER_H