blob: 5d5954b2519d366da6003f865e37f24526a40e16 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* @file combine_labels.h
*
* @author Guy Maurel
* @license GPL v2+
* extract from combine.h
*/
#ifndef COMBINE_LABELS_H_INCLUDED
#define COMBINE_LABELS_H_INCLUDED
/**
* Examines the whole file and changes CT_COLON to
* CT_Q_COLON, CT_LABEL_COLON, or CT_CASE_COLON.
* It also changes the CT_WORD before CT_LABEL_COLON into CT_LABEL.
*/
void combine_labels();
#endif /* COMBINE_LABELS_H_INCLUDED */
|