1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-25 23:11:16 +02:00

* Refactoring: put the Nix expression evaluator in its own library so

that it can be used by multiple programs.
This commit is contained in:
Eelco Dolstra 2003-11-19 11:35:41 +00:00
parent 2be8b5917a
commit ac68840e79
15 changed files with 3 additions and 2 deletions

10
src/libexpr/parser.hh Normal file
View file

@ -0,0 +1,10 @@
#ifndef __PARSER_H
#define __PARSER_H
#include "nixexpr.hh"
Expr parseExprFromFile(Path path);
#endif /* !__PARSER_H */