Nix 2.32.6
Nix, the purely functional package manager; unstable internal interfaces
Loading...
Searching...
No Matches
lexer-helpers.hh
1#pragma once
2
3#include <cstddef>
4
5#include "parser-scanner-decls.hh"
6
7namespace nix::lexer::internal {
8
9void initLoc(Parser::location_type * loc);
10
11void adjustLoc(yyscan_t yyscanner, Parser::location_type * loc, const char * s, size_t len);
12
13} // namespace nix::lexer::internal