1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-13 14:02:42 +01:00

C API: move to src/lib*/c/

This commit is contained in:
Yorick van Pelt 2023-08-07 17:16:58 +02:00 committed by José Luis Lafuente
parent df9401eb4e
commit e642bbc2a7
No known key found for this signature in database
GPG key ID: 8A3455EBE455489A
22 changed files with 78 additions and 5 deletions

View file

@ -0,0 +1,18 @@
#ifndef NIX_API_EXPR_INTERNAL_H
#define NIX_API_EXPR_INTERNAL_H
// forward declaration
namespace nix {
class EvalState;
class BindingsBuilder;
}; // namespace nix
struct State {
nix::EvalState state;
};
struct BindingsBuilder {
nix::BindingsBuilder builder;
};
#endif // NIX_API_EXPR_INTERNAL_H