You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
449 B

/**
* @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 *start, deque<Chunk *> &chunks);
void align_same_func_call_params();
#endif /* ALIGN_SAME_FUNC_CALL_PARAMS_H_INCLUDED */