llvm-project/lldb/test/API/lang/c/global_variables/a.c

8 lines
97 B
C

int g_a = 123;
struct Point {
int x;
int y;
};
struct Point g_marked_spot = { 20, 21 };