File: d.c

package info (click to toggle)
libgnatcoll 1.7gpl2015-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 17,280 kB
  • ctags: 1,124
  • sloc: ada: 134,072; python: 4,017; cpp: 1,397; ansic: 1,234; makefile: 368; sh: 152; xml: 31; sql: 6
file content (34 lines) | stat: -rw-r--r-- 482 bytes parent folder | download | duplicates (2)
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
31
32
33
34

// A c++ comment (1)
// on multiple lines
int CPP_before;

int CPP_after;
// A c++ comment (2)
// on multiple lines

/* A c comment (3)
   also on multiple lines */
int C_before1;

/* A c comment (4)
   also on multiple lines
*/
int C_before2;

int C_after1;
/* A c comment (5)
   also on multiple lines */

int C_after2;
/*
   A c comment (6)
   also on multiple lines
*/

/* A c comment (7) on a single line */
int C_before3;

// A c comment (8) on a single line
int C_before4;