File: test.in

package info (click to toggle)
filepp 1.7.1-6
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 1,120 kB
  • ctags: 240
  • sloc: perl: 2,597; makefile: 489; sh: 174; ansic: 15
file content (30 lines) | stat: -rw-r--r-- 403 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#define SOMETHING 1 /* hmmm... */

/* SOMETHING fishy */

SOMETHING

#define SOMETHING 1

#ifdef SOMETHING
this should be visible...
#if (SOMETHING==1)
... and this should be visible too
#endif
#endif

#ifdef NOTHING
this should not be visible...
#if (NOTHING==1)
... and this should be invisible too
#endif
#endif

#include "cpptest2.h"

/* comments */
// r
/* really
 * really
// great */
End of file