Today I started working on FUSE opensource code, there i found few lines like this:
struct fuse_session;
struct fuse_chan;
I don't know how to interpret it , as far as i knew 'struct
' is followed by structure name and then the name of variable. Where as in this case there is only one named entity followed by struct
,so this fuse session is structure variable or structure name itself.It may be some really basic thing but i am not able to find it anywhere.