如何在 cscope 中搜索结构成员/结构组合。例如我想搜索my_s.x
typedef struct _s{
int x;
} S;
int fun(){
S my_s1;
my_s1.x=10;
}
int main(){
int x = 1;
S my_s;
my_s.x = 5;
fun();
return my_s.x;
}
如何在 cscope 中搜索结构成员/结构组合。例如我想搜索my_s.x
typedef struct _s{
int x;
} S;
int fun(){
S my_s1;
my_s1.x=10;
}
int main(){
int x = 1;
S my_s;
my_s.x = 5;
fun();
return my_s.x;
}
我也偶然发现了这一点。基本上没有办法做到这一点。
我在寻找解决方案时发现了这一点: How to find struct member uses with cscope and ignore local variables?