mirror of
https://github.com/github/codeql.git
synced 2026-04-17 21:14:02 +02:00
10 lines
240 B
C
10 lines
240 B
C
/// Adds its arguments (has custom modeling in QL)
|
|
int custom_add_function(int a, int b);
|
|
|
|
int test_extensibility_add(int x) {
|
|
if (x >= -10 && x <= 10) {
|
|
int result = custom_add_function(x, 100);
|
|
return result; // 90 .. 110
|
|
}
|
|
}
|