blob: 897e2da2f734d3b713e9a231950cb850957cc62c (
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
38
39
40
41
42
43
44
45
46
47
48
|
/**
* @file align_tools.h
*
* @author Guy Maurel
* split from align.cpp
* @author Ben Gardner
* @license GPL v2+
*/
#ifndef ALIGN_TOOLS_H_INCLUDED
#define ALIGN_TOOLS_H_INCLUDED
#include "chunk.h"
#include "uncrustify_types.h"
/**
* @brief return the chunk the follows after a C array
*
* The provided chunk is considered an array if it is an opening square
* (CT_SQUARE_OPEN) and the matching close is followed by an equal sign '='
*
* Example: array[25] = 12;
* /|\ /|\
* | |
* provided chunk has to point to [ |
* returned chunk points to 12
*
* @param chunk chunk to operate on
*
* @return the chunk after the '=' if the check succeeds
* @return Chunk::NullChunkPtr in all other cases
*/
Chunk *skip_c99_array(Chunk *sq_open);
/**
* Scans a line for stuff to align on.
*
* We trigger on BRACE_OPEN, FPAREN_OPEN, ASSIGN, and COMMA.
* We want to align the NEXT item.
*/
Chunk *scan_ib_line(Chunk *start);
void ib_shift_out(size_t idx, size_t num);
Chunk *step_back_over_member(Chunk *pc);
#endif /* ALIGN_TOOLS_H_INCLUDED */
|