1

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

1 に答える 1