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.
Ziyang Hu 807e24bb50 bump version and fix dependencies 2 years ago
..
src fix C API naming 2 years ago
.gitignore example in C; always write `errored` in C API; 2 years ago
Cargo.toml bump version and fix dependencies 2 years ago
README.md Use github links for tutorial 2 years ago
build.rs change build script license 2 years ago
comiple-ios.sh building for iOS 2 years ago
cozo_c.h swift package 2 years ago
example.c update docs 2 years ago

README.md

Cozo C lib

This directory contains the source of the Cozo C API.

This document describes how to set up the C library. To learn how to use CozoDB (CozoScript), follow the tutorial first and then read the manual. You can run all the queries described in the tutorial with an in-browser DB here.

You can download pre-built libraries from the release page, look for those starting with libcozo_c.

The API is contained in this single header file.

An example for using the API is here.

To build and run the example:

gcc -L../target/release/ -lcozo_c example.c -o example && ./example

Building Cozo from source

You need to install the Rust toolchain on your system. Then:

cargo build --release -p cozo_c -F compact -F storage-rocksdb