2013-09-27 79 views
1

如何在cscope中搜索結構成員/結構組合。例如,我要搜索my_s.x在cscope中搜索結構成員

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; 
} 

回答