mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
8 lines
163 B
Plaintext
8 lines
163 B
Plaintext
import cpp
|
|
|
|
from Function f, boolean cLinkage
|
|
where if f.hasCLinkage()
|
|
then cLinkage = true
|
|
else cLinkage = false
|
|
select f, f.getNamespace(), cLinkage
|