You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
342 B
Markdown

# Cozo C lib
This directory contains the source of the Cozo C API.
For building, refer [here](../BUILDING.md).
The API is contained in this single [header file](./cozo_c.h).
An example for using the API is [here](./example.c).
To build and run the example:
```bash
gcc -L../target/release/ -lcozo_c example.c -o example && ./example
```