summaryrefslogtreecommitdiff
path: root/test.c
blob: 13a2af5067b1ffb0c069f848132989668cf4d6b6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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;
}