blob: 4b2cfbbac11d3e321b0611f9ecbfe38dc4cfa56c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/**
* @file brace_cleanup.h
* prototypes for brace_cleanup.cpp
*
* @author Ben Gardner
* @license GPL v2+
*/
#ifndef BRACE_CLEANUP_H_INCLUDED
#define BRACE_CLEANUP_H_INCLUDED
#include "uncrustify_types.h"
// necessary to not sort
#include "ParseFrame.h"
/**
* Scans through the whole list and does stuff.
* It has to do some tricks to parse preprocessors.
*/
void brace_cleanup(void);
#endif /* BRACE_CLEANUP_H_INCLUDED */
|