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.

26 lines
539 B

/**
* @file align_typedefs.h
*
* @author Guy Maurel
* split from align.cpp
* @author Ben Gardner
* @license GPL v2+
*/
#ifndef ALIGN_TYPEDEFS_H_INCLUDED
#define ALIGN_TYPEDEFS_H_INCLUDED
#include "uncrustify_types.h"
/**
* Aligns simple typedefs that are contained on a single line each.
* This should be called after the typedef target is marked as a type.
*
* typedef int foo_t;
* typedef char bar_t;
* typedef const char cc_t;
*/
void align_typedefs(size_t span);
#endif /* ALIGN_TYPEDEFS_H_INCLUDED */