Skip to main content
Product
Technology
Discover
Solutions
Docs
Downloads
Pricing
Search
/
Sign in
Sign up
brintos
/
llvm-project-archived
public
Read only
Watch
0
Star
0
Fork
0
Files
Commits
Issues
2
Discussions
0
Wiki
0
Insights
llvm-project-archived
/
lldb
/
test
/
API
/
lang
/
c
/
global_variables
/
a.c
Text
·
97 B
·
4861b71
Raw
8 lines · c
1
int g_a = 123;
2
struct Point {
3
int x;
4
int y;
5
};
6
struct Point g_marked_spot = { 20, 21 };
7
8