Quick Command to find structure definition in header files
From AcrodusWiki
find . -type f -name "*.h" -exec grep 'struct tvbuff' {} /dev/null \;
/dev/null is to produced file name as output
find . -type f -name "*.h" -exec grep 'struct tvbuff' {} /dev/null \;
/dev/null is to produced file name as output