mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-24 14:56:15 +02:00
10 lines
184 B
C++
10 lines
184 B
C++
|
#pragma once
|
||
|
|
||
|
namespace nix::lexer::internal {
|
||
|
|
||
|
void initLoc(YYLTYPE * loc);
|
||
|
|
||
|
void adjustLoc(yyscan_t yyscanner, YYLTYPE * loc, const char * s, size_t len);
|
||
|
|
||
|
} // namespace nix::lexer
|