mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-24 06:56:14 +02:00
9 lines
184 B
C++
9 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
|