blob: e7233df49aa478bd1a7ec6eb9d0412e819a72957 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Logic for formatting enums and enum tags
#pragma once
#include "../ast.h"
#include "../stdlib/datatypes.h"
OptionalText_t format_inline_tag(tag_ast_t *tag, Table_t comments);
Text_t format_tag(tag_ast_t *tag, Table_t comments, Text_t indent);
OptionalText_t format_inline_tags(tag_ast_t *tags, Table_t comments);
Text_t format_tags(tag_ast_t *tags, Table_t comments, Text_t indent);
|