From owner-freebsd-questions@FreeBSD.ORG Thu Jun 12 07:02:54 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E7A7037B401 for ; Thu, 12 Jun 2003 07:02:54 -0700 (PDT) Received: from smtp0.adl1.internode.on.net (smtp0.adl1.internode.on.net [203.16.214.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58EA243F85 for ; Thu, 12 Jun 2003 07:02:52 -0700 (PDT) (envelope-from malcolm.kay@internode.on.net) Received: from beta.home (ppp2159.sa.padsl.internode.on.net [150.101.28.110]) h5CE2nCT095374; Thu, 12 Jun 2003 23:32:50 +0930 (CST) Content-Type: text/plain; charset="iso-8859-2" From: Malcolm Kay Organization: At home To: Michal Pasternak , freebsd-questions@freebsd.org Date: Thu, 12 Jun 2003 23:32:49 +0930 User-Agent: KMail/1.4.3 References: <20030611204807.GA29188@pasternak.w.lub.pl> In-Reply-To: <20030611204807.GA29188@pasternak.w.lub.pl> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200306122332.49265.malcolm.kay@internode.on.net> Subject: Re: System for generating C/C++ references? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 14:02:55 -0000 On Thu, 12 Jun 2003 06:18, Michal Pasternak wrote: > Hello, > > I am looking for some sort of software which would allow me > to generate C/C++ (and preferably other languages, like Python > or PHP) references for a given project. Suppose I am browsing > FreeBSD kernel, notice, that a function uses ,,struct somestruct'' > as it's parameter. I want to see, what other functions use this > struct and where's that struct defined. I know, that tools like > find and grep might be helpful :) but it is uncomfortable > to grep kernel sources every time I want to find something. > > I am sure I have seen projects like this, but I cant remember > the name. Could you? Thanks in advance. > > Please CC: me, as I am not quite a subscriber of this list. > > Regards, 'global' and its associated utilities might help. In particular the 'htags' utility will produce a browsable HTML library. Malcolm