blob: c82f4ace86bc1e9b7f09b43dddd48b7f89ae4b34 (
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_t *calculate_closing_brace_position(const chunk_t *cl_colon, chunk_t *pc);
#endif /* CALCULATE_CLOSING_BRACE_POSITION_H_INCLUDED */
|