mirror of
https://github.com/fluencelabs/wasmer
synced 2025-06-21 12:41:32 +00:00
Add first c test to test the C api
This commit is contained in:
9
lib/runtime-c-api/tests/test-instantiate.c
Normal file
9
lib/runtime-c-api/tests/test-instantiate.c
Normal file
@ -0,0 +1,9 @@
|
||||
#include <stdio.h>
|
||||
#include "../wasmer.h"
|
||||
|
||||
int main()
|
||||
{
|
||||
wasmer_import_object_t *import_object = wasmer_import_object_new();
|
||||
wasmer_import_object_destroy(import_object);
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user