mirror of
https://codeberg.org/ProgramSnail/lang.git
synced 2025-12-06 06:58:46 +00:00
10 lines
183 B
C++
10 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
|