summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/c/10019-include-guard.h
blob: e742dd4c1c6e16db5b51e40559b4b75ac6acbb6a (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef FOO
	#define FOO

	int foo();

	#ifdef BAR
		#define BAZ
		int bar();
	#endif
#endif