simple test

This commit is contained in:
Shannon Appelcline 2020-08-05 12:38:11 -10:00 committed by GitHub
parent 7c7c323f9b
commit 995d7ceeea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

13
src/16_1_testwally.c Normal file
View File

@ -0,0 +1,13 @@
#include <stdio.h>
#include "wally_core.h"
int main(void) {
int lw_response;
lw_response = wally_init(0);
printf("Startup: %d\n",lw_response);
wally_cleanup(0);
}