Re: finding casts from a type

2005-02-07 Thread Joerg Sonnenberger
On Mon, Feb 07, 2005 at 08:10:13AM -0800, Brooks Davis wrote: > I'm trying to figure out an efficent way to find all the places where a > given type (in my case struct ifnet *) is cast to another. Does anyone > know of a tool to do this? I need to include implicit casts to (void > *). I could do

Re: finding casts from a type

2005-02-07 Thread Bob Bishop
At 16:10 07/02/2005, Brooks Davis wrote: I'm trying to figure out an efficent way to find all the places where a given type (in my case struct ifnet *) is cast to another. Hack up a copy of ports/devel/splint? -- Bob Bishop +44 (0)118 940 1243 [EMAIL PROTECTED] fax +4

finding casts from a type

2005-02-07 Thread Brooks Davis
I'm trying to figure out an efficent way to find all the places where a given type (in my case struct ifnet *) is cast to another. Does anyone know of a tool to do this? I need to include implicit casts to (void *). I could do it by hand, but this is would be tedious and error prone given that th