How can I quickly search all included header files in a project for a specific symbol?
Use etags
/ctags
from the exuberant ctags project in conjunction with an editor (emacs, vim) that understands them, or GNU GLOBAL.
Oh, and if you happen to use automake it generates a target TAGS
. So no need for complicated manual calls to {c,e}tags
.