blob: 9e57baa0658334e586762455b7b65ff0a08270ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/**
* @file align_tab_column.h
*
* @author Guy Maurel
* split from prototypes.h
* @author Ben Gardner
* @license GPL v2+
*/
#ifndef ALIGN_TAB_COLUMN_H_INCLUDED
#define ALIGN_TAB_COLUMN_H_INCLUDED
#include "uncrustify_types.h"
/**
* Advances to the next tab stop if not currently on one.
*
* @param col The current column
* @return the next tabstop column
*/
size_t align_tab_column(size_t col);
#endif /* ALIGN_TAB_COLUMN_H_INCLUDED */
|