home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / vol_300 / 329_01 / header.doc < prev    next >
Text File  |  1990-10-12  |  3KB  |  87 lines

  1. /*
  2. HEADER:         ;
  3. TITLE:          Define;
  4. VERSION:        October 17  1989;
  5. DESCRIPTION:    "Constructs C definitions from descriptions given to it in
  6.                 plain English. It can form the most complete definitions."
  7. KEYWORDS:       C definition;
  8. FILENAME:       DEFINE.C;
  9. DOCUMENT:       DEFINE.DOC;
  10. AUTHORS:        Asaf Arkin;
  11. COMPILERS:      Draft ANSI C, K&R-adaptable; */
  12.  
  13.  
  14. /*
  15. HEADER:         ;
  16. TITLE:          cFlow;
  17. VERSION:        October 17  1989;
  18. DESCRIPTION:    "Reads multiple C source files, to produce from them a
  19.                 collective report of function dependencies: the report shows
  20.                 you which function calls which and where it is found within
  21.                 the files provided."
  22. KEYWORDS:       Program analyzer, calling hierarchy;
  23. FILENAME:       CFLOW.C;
  24. DOCUMENT:       CFLOW.DOC;
  25. WARNINGS:       "cFlow is not perfect: it does not perform preprocessing
  26.                 activities, and has difficulties handling typedefed
  27.                 functions and pointers to functions. Refer to accompanying
  28.                 article."
  29. AUTHORS:        Asaf Arkin;
  30. COMPILERS:      Draft ANSI C, K&R-adaptable;
  31. */
  32.  
  33.  
  34. /*
  35. HEADER:         ;
  36. TITLE:          dprintf -- Source Code;
  37. VERSION:        August 30  1989;
  38. DESCRIPTION:    "dprintf is a clone of the printf function, as defined in the
  39.                 ANSI standard. Presented in source code, the programmer can
  40.                 modify and adapt it as needs dictate -- dprintf is highly
  41.                 portable and expandable.
  42. KEYWORDS:       printf, output, library functions;
  43. FILENAME:       DPRINTF.C;
  44. WARNINGS:       "The floating point output formats cast doubles to ints: on
  45.                 some systems, too long floating point numbers may fail to
  46.                 convert, or otherwise result in inaccurate figures.
  47.  
  48.                 Permission is hereby granted to freely distribute dprintf,
  49.                 provided that no commercial use is made of it whatsoever."
  50. SEE-ALSO:       DPRINTF-F.C, TEST.C;
  51. AUTHORS:        Arkin Asaf;
  52. COMPILERS:      Draft ANSI C, K&R-adaptable;
  53. */
  54.  
  55.  
  56. /*
  57. HEADER:         ;
  58. TITLE:          dprintf -- PrintFloat 2nd Version;
  59. VERSION:        August 30  1989;
  60. DESCRIPTION:    "Altered PrintFloat does no double to int casts; The math
  61.                 library floor function is used instead."
  62. KEYWORDS:       printf, output, library functions;
  63. FILENAME:       DPRINTF-F.C;
  64. WARNINGS:       "Math library must be available; floor function deals with
  65.                 doubles: long doubles are not catered for."
  66. SEE-ALSO:       DPRINTF.C, TEST.C;
  67. AUTHORS:        Arkin Asaf;
  68. COMPILERS:      Draft ANSI C, K&R-adaptable;
  69. */
  70.  
  71.  
  72. /*
  73. HEADER:         ;
  74. TITLE:          dprintf -- Test Program;
  75. VERSION:        August 30  1989;
  76. DESCRIPTION:    "Compares the output of dprintf with that of printf:
  77.                   TEST          Produce dprintf output,
  78.                   TEST -        Produce printf output."
  79. KEYWORDS:       printf, output, library functions;
  80. FILENAME:       TEST.C;
  81. SEE-ALSO:       DPRINTF.C, DPRINTF-F.C;
  82. AUTHORS:        Arkin Asaf;
  83. COMPILERS:      Draft ANSI C, K&R-adaptable;
  84. */
  85.  
  86.  
  87.