home *** CD-ROM | disk | FTP | other *** search
- lf - (c) 1989 by Jeff Bevis
-
- This nifty little program will provide you with a complete listing of all
- C functions contained within specified files. Usage is as follows:
-
- lf [-scn] file.c [[-scn] file.c]
-
- Any number of files may be specified on the command line. The options are
- as follows:
-
- -s Suppress printing of line numbers. By default, line numbers
- are printed.
-
- -c Generate C source code in the form of function declarations.
- I use this option to generate function declaration headers
- (def.h) files for my larger programs.
-
- -n Force normal formatting again. Since flags can be specified
- anywhere on the command line (before or after files), you
- can cancel the c and s options for subsequent files with
- this option.
-
- The source code provided will compile equally well under UNIX or Amiga
- Lattice.
-
- -Jeff
-