blob: c7e122fcef6882d250298c7ba5db86acc04423d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/**
* @file align_same_func_call_params.h
*
* @author Guy Maurel
* split from align.cpp
* @author Ben Gardner
* @license GPL v2+
*/
#ifndef ALIGN_SAME_FUNC_CALL_PARAMS_H_INCLUDED
#define ALIGN_SAME_FUNC_CALL_PARAMS_H_INCLUDED
#include "ChunkStack.h"
#include <deque>
using namespace std;
void align_params(chunk_t *start, deque<chunk_t *> &chunks);
void align_same_func_call_params(void);
#endif /* ALIGN_SAME_FUNC_CALL_PARAMS_H_INCLUDED */
|