Add first c test to test the C api

This commit is contained in:
Brandon Fish
2019-02-01 22:10:36 -06:00
parent 6f05146737
commit 62f7bb607e
8 changed files with 54 additions and 13 deletions

View 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;
}