From owner-freebsd-questions@FreeBSD.ORG Thu Apr 29 15:30:36 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 F350916A4CE for ; Thu, 29 Apr 2004 15:30:35 -0700 (PDT) Received: from boole.cs.uh.edu (Boole.cs.uh.edu [129.7.240.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD33F43D39 for ; Thu, 29 Apr 2004 15:30:35 -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 5E690F97B; Thu, 29 Apr 2004 17:30:35 -0500 (CDT) Received: from localhost (pdesai1@localhost) by themis.cs.uh.edu (8.11.7+Sun/8.11.4) with ESMTP id i3TMUZ813277; Thu, 29 Apr 2004 17:30:35 -0500 (CDT) X-Authentication-Warning: themis.cs.uh.edu: pdesai1 owned process doing -bs Date: Thu, 29 Apr 2004 17:30:35 -0500 (CDT) From: "Pranav A. Desai" To: Roop Nanuwa In-Reply-To: <4DA996D1.2268324D@mail.gmail.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII 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: Thu, 29 Apr 2004 22:30:36 -0000 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 will give cflow a try. Thanks ******************************************************************* Pranav A. Desai On Thu, 29 Apr 2004, Roop Nanuwa wrote: > On Thu, 29 Apr 2004 17:00:06 -0500 (CDT), Pranav A. Desai > wrote: > > > > Hi all! > > > > Does anyone know of a free tool that can convert src code into simple > > flowchart. I just need something very basic that just tracks the > > functions, I dont need conditional statements or anything. > > How simple? There is a port called cflow that does something that > seems to be what you're looking for but it's for C code only. Take a > look under the ports tree at deve/cflow. Is there a particular > language you're planning on using this on? >