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.

22 lines
501 B

/**
* @file align_braced_init_list.h
*
* @author Guy Maurel
* @license GPL v2+
*/
#ifndef ALIGN_BRACED_INIT_LIST_H_INCLUDED
#define ALIGN_BRACED_INIT_LIST_H_INCLUDED
#include "chunk.h"
/**
* Aligns all braced init list operators on the same level as first, starting with
* first.
*
* @param first chunk pointing to the first braced init list
*/
Chunk *align_braced_init_list(Chunk *first, size_t span, size_t thresh, size_t *p_nl_count);
#endif /* ALIGN_BRACED_INIT_LIST_H_INCLUDED */