changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / tests/demo_test.c

changeset 13: 1fedeaa5bfc5
parent: bebb76da449c
author: ellis <ellis@rwest.io>
date: Fri, 19 May 2023 22:38:49 -0400
permissions: -rw-r--r--
description: tweaks to ffi and makefile
1 #include <stdio.h>
2 #include "demo.h"
3 
4 int main() {
5  Service *srv = service_from_string("weather");
6  printf!("%s\n",service_to_json_str(srv));
7  free_service(srv);
8 }