From owner-freebsd-questions@FreeBSD.ORG Fri Apr 30 13:11:48 2004 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 C748316A4D0 for ; Fri, 30 Apr 2004 13:11:48 -0700 (PDT) Received: from boole.cs.uh.edu (Boole.cs.uh.edu [129.7.240.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FD5143D4C for ; Fri, 30 Apr 2004 13:11:48 -0700 (PDT) (envelope-from pdesai1@cs.uh.edu) Received: from themis.cs.uh.edu (themis [129.7.240.5]) by boole.cs.uh.edu (Postfix) with ESMTP id DF6E0F97A; Fri, 30 Apr 2004 15:11:47 -0500 (CDT) Received: from localhost (pdesai1@localhost) by themis.cs.uh.edu (8.11.7+Sun/8.11.4) with ESMTP id i3UKBlU15599; Fri, 30 Apr 2004 15:11:47 -0500 (CDT) X-Authentication-Warning: themis.cs.uh.edu: pdesai1 owned process doing -bs Date: Fri, 30 Apr 2004 15:11:47 -0500 (CDT) From: "Pranav A. Desai" To: Danny MacMillan In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: Roop Nanuwa cc: freebsd-questions@freebsd.org Subject: Re: [OT] Tool to convert src code to flowchart 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: Fri, 30 Apr 2004 20:11:48 -0000 Hi! > I believe that's called a call graph. A flowchart is something else > entirely. I guess thats why I wasn't getting good results on Google. But cflow works great for me! ... especially with the cflow2vcg package. Thanks Roop! -Pranav. ******************************************************************* Pranav A. Desai On Fri, 30 Apr 2004, Danny MacMillan wrote: > On Thu, 29 Apr 2004 17:30:35 -0500 (CDT), Pranav A. Desai > wrote: > > > Hi! > > I need it for C. The chart can be ascii. > > E.g. > > main.c > > ------ > > main(){ > > A(); > > B(); > > } > > A.c > > --- > > A() { > > C(); > > } > > will be: > > main -> A > > | |-> C > > | > > -> B > > etc. > > I believe that's called a call graph. A flowchart is something else > entirely. > > -- > Danny >