home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 2 / FFMCD02.bin / new / dev / misc / cweb / examples / extex-p.ch < prev    next >
Text File  |  1993-12-21  |  2KB  |  64 lines

  1.                                 -*-Web-*-
  2. This file, EXTEX-P.CH, is part of CWEB-p.  It is a changefile written by
  3. Andreas Scherer, Abt-Wolf-Straße 17, 96215 Lichtenfels, Germany, for
  4. EXTEX.W that provides changes appropriate for ANSI-C compilers.
  5.  
  6. This program is distributed WITHOUT ANY WARRANTY, express or implied.
  7.  
  8. The following copyright notice extends to this changefile only, not to the
  9. masterfile.
  10.  
  11. Copyright (c) 1993 Andreas Scherer
  12.  
  13. Permission is granted to make and distribute verbatim copies of this
  14. document provided that the copyright notice and this permission notice
  15. are preserved on all copies.
  16.  
  17. Permission is granted to copy and distribute modified versions of this
  18. document under the conditions for verbatim copying, provided that the
  19. entire resulting derived work is distributed under the terms of a
  20. permission notice identical to this one.
  21.  
  22. Version history:
  23.  
  24. Version    Date        Author    Comment
  25. p1    1 Sep 1993    AS    First hack.
  26. ------------------------------------------------------------------------------
  27. Some external routines and all the internal routines need prototypes.
  28. @x l.46
  29. @c
  30. #include <stdio.h>
  31. #include <ctype.h>
  32. @#
  33. @<Global variables@>@;
  34. @<Procedures@>@;
  35. @#
  36. main(argc,argv)
  37. @y
  38. @c
  39. #include <stdio.h>
  40. #include <stdlib.h>
  41. #include <string.h>
  42. #include <ctype.h>
  43. @#
  44. @<Global variables@>@;
  45. @<Prototypes@>@;
  46. @<Procedures@>@;
  47. @#
  48. void main(argc,argv)
  49. @z
  50. ------------------------------------------------------------------------------
  51. The extra module for the prototypes won't mess up the numbering.
  52. @x l.356
  53. @* Index.
  54. @y
  55. @ The internal routines are declared here.
  56.  
  57. @<Prototypes@>=
  58. int get(void);
  59. int controlseq(void);
  60.  
  61. @* Index.
  62. @z
  63. ------------------------------------------------------------------------------
  64.