Re: [OT] Tool to convert src code to flowchart

From: Pranav A. Desai (pdesai1_at_cs.uh.edu)
Date: 04/30/04

  • Next message: Ion-Mihai Tetcu: "Re: failed php4 install...can't figure this one out"
    Date: Thu, 29 Apr 2004 17:30:35 -0500 (CDT)
    To: Roop Nanuwa <roop.nanuwa@gmail.com>
    
    

    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
    > <pdesai1@cs.uh.edu> 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?
    >
    _______________________________________________
    freebsd-questions@freebsd.org mailing list
    http://lists.freebsd.org/mailman/listinfo/freebsd-questions
    To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org"
    

  • Next message: Ion-Mihai Tetcu: "Re: failed php4 install...can't figure this one out"