home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / uncomm.zip / read.me next >
Text File  |  1994-02-17  |  1KB  |  35 lines

  1. UnComment 3.3
  2.  
  3. It removes comments from program source code. The following languages
  4. are recognized (via file extension):
  5.  
  6. Extension   Language    Comment Delimiters
  7. ---------   --------    ------------------
  8. .pas        Pascal      (* *) { }
  9. .ada        Ada         --
  10. .for        FORTRAN     C
  11. .asm        Assembler   ;
  12. .mak        Makefile    #
  13.  
  14. every other extension is treated as C/C++ source code with comment
  15. delimiters of /* */ and //.
  16.  
  17. If the extension is not one of the above you can 'force' the language
  18. by specifying the extension as the third argument to the program.
  19.  
  20. For example, if you wanted to remove comments from a dependency file
  21. such as 'MYFILE.DEP' that is included in a NMAKE makefile you need to
  22. type:
  23.  
  24.    uncomment MYFILE.DEP MYFILE.OUT .MAK
  25.  
  26. Notice that when you process a file called 'MAKEFILE' the program
  27. recognizes it as if it had a .MAK extension and thus the third argument
  28. isn't needed.
  29.  
  30. ************************************************************************
  31.             THERE IS ABSOLUTELY NO WARRANTY FOR THIS PROGRAM!
  32.  
  33.                          USE AT YOUR OWN RISK!
  34. ************************************************************************
  35.