home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / STVI369G.ZIP / CTAGS.DOC < prev    next >
Text File  |  1990-05-01  |  1KB  |  38 lines

  1.  
  2. ctags - first cut at a UNIX ctags re-implementation
  3.  
  4.  
  5. This is a public domain rewrite of the standard UNIX ctags command.
  6. It is a simplified version written primarily for use with the 'stevie'
  7. editor. The command line syntax is:
  8.  
  9.     ctags [file ...]
  10.  
  11. Ctags scans the all files given on the command line. If no files are
  12. given, the standard input is scanned for a list of file names.
  13.  
  14. Function declarations and macros are supported. However, only simple
  15. forms of each are recognized. Functions must be of the following form:
  16.  
  17. type
  18. fname(...)
  19.  
  20. where "fname" is the name of the function and must come at the beginning
  21. of a line. This is the form I always use, so the limitation doesn't
  22. bother me.
  23.  
  24. Macros (with or without parameters) of the following form are also detected:
  25.  
  26. "#" [white space] "define" [white space] NAME
  27.  
  28. The white space between the "#" and "define" is optional.
  29.  
  30.  
  31. Other Limitations and Changes
  32.  
  33. No sorting or detection of duplicate functions is done.
  34.  
  35.  
  36. Tony Andrews
  37. August 1987
  38.