1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-04 19:41:48 +02:00

C API: add tests for libutil and libstore

This commit is contained in:
José Luis Lafuente 2023-12-14 20:14:58 +01:00 committed by José Luis Lafuente
parent 46f5d0ee7b
commit 41f1669dea
No known key found for this signature in database
GPG key ID: 8A3455EBE455489A
6 changed files with 133 additions and 25 deletions

View file

@ -6,4 +6,10 @@ struct Store
{
nix::ref<nix::Store> ptr;
};
struct StorePath
{
nix::StorePath path;
};
#endif