如何在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;
}
答案 0 :(得分:0)
我也偶然发现了这一点。 基本上没有办法做到这一点。
我在搜索解决方案时发现了这个: How to find struct member uses with cscope and ignore local variables?