summaryrefslogtreecommitdiff
path: root/test.c
diff options
context:
space:
mode:
authorChristian Segundo2023-06-11 22:09:15 +0200
committerChristian Segundo2023-06-11 22:09:15 +0200
commit3bd3f432a95da405634cdbd2a662d79a3a5ba7af (patch)
treeed7ac24e3309d8c6b4f43d1051d95b18a7165a2c /test.c
downloadzmission-3bd3f432a95da405634cdbd2a662d79a3a5ba7af.tar.gz
wip
Diffstat (limited to 'test.c')
-rw-r--r--test.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/test.c b/test.c
new file mode 100644
index 0000000..13a2af5
--- /dev/null
+++ b/test.c
@@ -0,0 +1,13 @@
+// This header is generated by zig from mathtest.zig
+#include "xmission.h"
+#include <stdio.h>
+
+int main(int argc, char **argv) {
+ struct ClientOptions opts;
+ opts.host = "192.168.0.2";
+ opts.port = 9091;
+
+ c_client client = c_client_init(opts);
+ c_client_deinit(client);
+ return 0;
+}