mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
16 lines
294 B
C++
16 lines
294 B
C++
// SPDX-License-Identifier: MIT
|
|
|
|
#ifndef RGBDS_LINK_LEXER_HPP
|
|
#define RGBDS_LINK_LEXER_HPP
|
|
|
|
#include <string>
|
|
|
|
void lexer_TraceCurrent();
|
|
|
|
void lexer_IncludeFile(std::string &&path);
|
|
void lexer_IncLineNo();
|
|
|
|
bool lexer_Init(std::string const &linkerScriptName);
|
|
|
|
#endif // RGBDS_LINK_LEXER_HPP
|