home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 419b.lha / mkproto / README < prev    next >
Text File  |  1990-04-01  |  2KB  |  36 lines

  1. Here is mkproto, a program for generating prototype declarations for all
  2. functions appearing in a C source file. The input C code may be either
  3. K&R or ANSI C (i.e. it's OK if the functions are defined using prototypes).
  4. Unlike some of the sed-based scripts floating around, it correctly
  5. handles prototype promotion (e.g. the prototype for 'int foo() char x;...'
  6. is 'int foo(int x)'). Also, it should work OK on just about any computer,
  7. not just Unix-based ones (it's been tested under minix, Unix, and TOS).
  8.  
  9. Use: typically, you would type 'mkproto *.c >proto.h' and then add a
  10. '#include "proto.h"' line to all the C source files. An ANSI conformant
  11. compiler will then be able to do type checking on function calls across
  12. module boundaries. As a bonus, proto.h will tell you which source files
  13. functions were defined in, and (if you gave the -n function to mkproto)
  14. their line numbers. The resulting include file may also be used by
  15. non-ANSI compilers; you can disable this feature (for cleaner, strictly
  16. ANSI-conforming output) with the -p flag.
  17.  
  18. Please read the description of bugs in mkproto.man; definitely mkproto
  19. will not handle all programs correctly, but it does work on the majority of
  20. them. A sample of its output is provided in the file "mkproto.h"; this
  21. is the result of 'mkproto mkproto.c >mkproto.h'.
  22.  
  23. There is ABSOLUTELY NO WARRANTY for the program; as I said, it doesn't work
  24. on all programs (complicated function definitions can make it produce bogus
  25. output). It does what I need, though, and it can certainly make porting stuff
  26. to ANSI compilers easier.
  27.  
  28. Mkproto is in the public domain. If you find any bugs (other than the ones
  29. documented) please let me know.
  30. --
  31. Eric R. Smith                     email:
  32. Dept. of Mathematics            ersmith@uwovax.uwo.ca
  33. University of Western Ontario   ersmith@uwovax.bitnet
  34. London, Ont. Canada N6A 5B7
  35. ph: (519) 661-3638
  36.