home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 3 / PDCD_3.iso / tex / texsrc1 / Src / lib / h / c-proto < prev    next >
Text File  |  1992-04-01  |  2KB  |  62 lines

  1. /* c-proto.h: macros to include or discard prototypes.
  2.  
  3. Copyright (C) 1992 Free Software Foundation, Inc.
  4.  
  5. This program is free software; you can redistribute it and/or modify
  6. it under the terms of the GNU General Public License as published by
  7. the Free Software Foundation; either version 2, or (at your option)
  8. any later version.
  9.  
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. GNU General Public License for more details.
  14.  
  15. You should have received a copy of the GNU General Public License
  16. along with this program; if not, write to the Free Software
  17. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  18.  
  19. #ifndef C_PROTO_H
  20. #define C_PROTO_H
  21.  
  22. /* Although most of the code here is written in GNU C, a few files are
  23.    shared with other distributions (TeX, xdvi, dvips), and so need to be
  24.    compilable with common C, also.  Here are macros which play around
  25.    with function declarations to make them work in both cases.  The P?H
  26.    macros are used for declarations, the P?C for definitions.  */
  27.  
  28. #if __STDC__
  29.  
  30. #define P1H(p1) (p1)
  31. #define P2H(p1,p2) (p1, p2)
  32. #define P3H(p1,p2,p3) (p1, p2, p3)
  33. #define P4H(p1,p2,p3,p4) (p1, p2, p3, p4)
  34. #define P5H(p1,p2,p3,p4,p5) (p1, p2, p3, p4, p5)
  35.  
  36. #define P1C(t1,n1)(t1 n1)
  37. #define P2C(t1,n1, t2,n2)(t1 n1, t2 n2)
  38. #define P3C(t1,n1, t2,n2, t3,n3)(t1 n1, t2 n2, t3 n3)
  39. #define P4C(t1,n1, t2,n2, t3,n3, t4,n4)(t1 n1, t2 n2, t3 n3, t4 n4)
  40. #define P5C(t1,n1, t2,n2, t3,n3, t4,n4, t5,n5) \
  41.   (t1 n1, t2 n2, t3 n3, t4 n4, t5 n5)
  42.  
  43. #else /* not __STDC__ */
  44.  
  45. #define P1H(p1) ()
  46. #define P2H(p1, p2) ()
  47. #define P3H(p1, p2, p3) ()
  48. #define P4H(p1, p2, p3, p4) ()
  49. #define P5H(p1, p2, p3, p4, p5) ()
  50.  
  51. #define P1C(t1,n1) (n1) t1 n1;
  52. #define P2C(t1,n1, t2,n2) (n1, n2) t1 n1; t2 n2;
  53. #define P3C(t1,n1, t2,n2, t3,n3) (n1, n2, n3) t1 n1; t2 n2; t3 n3;
  54. #define P4C(t1,n1, t2,n2, t3,n3, t4,n4) (n1, n2, n3, n4) \
  55.   t1 n1; t2 n2; t3 n3; t4 n4;
  56. #define P5C(t1,n1, t2,n2, t3,n3, t4,n4, t5,n5) (n1, n2, n3, n4, n5) \
  57.   t1 n1; t2 n2; t3 n3; t4 n4; t5 n5;
  58.  
  59. #endif /* not __STDC__ */
  60.  
  61. #endif /* not C_PROTO_H */
  62.