1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-26 03:21:16 +02:00

C API: add tests for external values

This commit is contained in:
José Luis Lafuente 2024-02-25 00:28:04 +01:00 committed by José Luis Lafuente
parent 2349185c96
commit 7c602d9f01
No known key found for this signature in database
GPG key ID: 8A3455EBE455489A
5 changed files with 100 additions and 17 deletions

View file

@ -14,4 +14,19 @@ struct BindingsBuilder
nix::BindingsBuilder builder;
};
struct nix_string_return
{
std::string str;
};
struct nix_printer
{
std::ostream & s;
};
struct nix_string_context
{
nix::NixStringContext & ctx;
};
#endif // NIX_API_EXPR_INTERNAL_H