blob: 1c71d5af9146b94a05eadefb9fd8be9045086744 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/**
* @file align_struct_initializers.h
*
* @author Guy Maurel
* split from align.cpp
* @author Ben Gardner
* @license GPL v2+
*/
#ifndef ALIGN_STRUCT_INITIALIZERS_H_INCLUDED
#define ALIGN_STRUCT_INITIALIZERS_H_INCLUDED
#include "uncrustify_types.h"
//! Aligns stuff inside a multi-line "= { ... }" sequence.
void align_struct_initializers(void);
#endif /* ALIGN_STRUCT_INITIALIZERS_H_INCLUDED */
|