blob: f57fa881a25f0981a6ff7604cc00e25732bcd86e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/**
* @file align_oc_msg_spec.cpp
*
* @author Guy Maurel
* split from align.cpp
* @author Ben Gardner
* @license GPL v2+
*/
#include "align_oc_msg_spec.h"
#include "align_assign.h"
#include "align_stack.h"
void align_oc_msg_spec(size_t span)
{
LOG_FUNC_ENTRY();
AlignStack as;
as.Start(span, 0);
for (chunk_t *pc = chunk_get_head(); pc != nullptr; pc = chunk_get_next(pc))
{
if (chunk_is_newline(pc))
{
as.NewLines(pc->nl_count);
}
else if (chunk_is_token(pc, CT_OC_MSG_SPEC))
{
as.Add(pc);
}
}
as.End();
} // void align_oc_msg_spec
|