blob: 6d2b0f0650f81f5303d5cc81c746793a94da83cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/**
* @file calculate_closing_brace_position.h
* prototype for calculate_closing_brace_position.cpp
*
* @author Guy Maurel
* @license GPL v2+
*/
#ifndef CALCULATE_CLOSING_BRACE_POSITION_H_INCLUDED
#define CALCULATE_CLOSING_BRACE_POSITION_H_INCLUDED
#include "uncrustify_types.h"
Chunk *calculate_closing_brace_position(const Chunk *cl_colon, Chunk *pc);
#endif /* CALCULATE_CLOSING_BRACE_POSITION_H_INCLUDED */
|