Date: Thu, 30 May 1996 10:57:51 CDT From: Soren Dayton <csdayton@midway.uchicago.edu> To: John-Mark Gurney <gurney_j@resnet.uoregon.edu> Cc: FreeBSD Hackers <hackers@freebsd.org> Message-ID: <199605301557.KAA01316@woodlawn.uchicago.edu> In-Reply-To: John-Mark Gurney's message of Wed, 29 May 1996 23:25:20 -0700 (PDT) References: <Pine.BSF.3.91.960529232046.284I-100000@nike.efn.org>
next in thread | previous in thread | raw e-mail | index | archive | help
> I am looking for a utility that will be able to search a source file and > it's includes in search of something like a struct of a function > declaration... I'm not sure it such a util exists... if it doesn't I > will write one... but I don't want to re-invent the wheel... (almost said > invent the wheel :) )... thanks for your pointers... TTYL.. how about modifying makedepend(1) to output to an arbitrary file? then you could do things like: ctags -tF `makedepend -output /dev/fd/0 $fil;e | cut -d: -f2-` that would seem to solve your problem. Soren
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199605301557.KAA01316>