mirror of
https://codeberg.org/ProgramSnail/lang.git
synced 2025-12-06 15:08:48 +00:00
11 lines
183 B
C++
11 lines
183 B
C++
|
|
#pragma once
|
||
|
|
|
||
|
|
#include "basic_printers.hpp"
|
||
|
|
#include "doc_nodes.hpp"
|
||
|
|
|
||
|
|
namespace printers {
|
||
|
|
|
||
|
|
void print_docs(const nodes::SymbolDocs &docs, Printer &printer);
|
||
|
|
|
||
|
|
} // namespace printers
|