File: include_guard.cc

package info (click to toggle)
ccls 0.20210330-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 1,340 kB
  • sloc: cpp: 13,398; python: 152; makefile: 15; objc: 15; ansic: 1
file content (28 lines) | stat: -rw-r--r-- 467 bytes parent folder | download | duplicates (4)
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
#ifndef FOO
#define FOO

#endif

/*
OUTPUT:
{
  "includes": [],
  "skipped_ranges": [],
  "usr2func": [],
  "usr2type": [],
  "usr2var": [{
      "usr": 14219599523415845943,
      "detailed_name": "FOO",
      "qual_name_offset": 0,
      "short_name": "FOO",
      "hover": "#define FOO",
      "spell": "2:9-2:12|2:9-2:12|2|-1",
      "type": 0,
      "kind": 255,
      "parent_kind": 1,
      "storage": 0,
      "declarations": [],
      "uses": []
    }]
}
*/