mirror of
https://github.com/fluencelabs/sqlite
synced 2025-03-16 23:30:50 +00:00
12 lines
224 B
C
12 lines
224 B
C
#ifndef C_SDK_LOGGER_H
|
|
#define C_SDK_LOGGER_H
|
|
|
|
/**
|
|
* Writes provided string to Wasm VM logger.
|
|
*
|
|
* @param log_message a message that should be logged.
|
|
*/
|
|
void wasm_log(const char *str, int len);
|
|
|
|
#endif //C_SDK_LOGGER_H
|