diff options
Diffstat (limited to 'test-client.c')
-rw-r--r-- | test-client.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test-client.c b/test-client.c new file mode 100644 index 0000000..1df974c --- /dev/null +++ b/test-client.c @@ -0,0 +1,12 @@ +#include <stdint.h> +#include <stdio.h> +#include <stdlib.h> +#include "kiro-client.h" + + +int main(void) +{ + KiroClient *client = g_object_new(KIRO_TYPE_CLIENT, NULL); + kiro_client_connect(client, "127.0.0.1", "60010", 5000); + return 0; +}
\ No newline at end of file |