diff options
Diffstat (limited to 'debian/uncrustify-trinity/uncrustify-trinity-0.73.0/src/brace_cleanup.h')
-rw-r--r-- | debian/uncrustify-trinity/uncrustify-trinity-0.73.0/src/brace_cleanup.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/src/brace_cleanup.h b/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/src/brace_cleanup.h new file mode 100644 index 00000000..4b2cfbba --- /dev/null +++ b/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/src/brace_cleanup.h @@ -0,0 +1,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 */ |