blob: 5d767824b38271c01e4be2710cf16729e094601f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/**
* @file sorting.h
* prototypes for sorting.cpp
*
* @author Ben Gardner
* @license GPL v2+
*/
#ifndef SORTING_H_INCLUDED
#define SORTING_H_INCLUDED
#include "uncrustify_types.h"
/**
* alphabetically sort the #include or #import
* statements of a file
*
* @todo better use a chunk pointer parameter
* instead of a global variable
*/
void sort_imports(void);
#endif /* SORTING_H_INCLUDED */
|