home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gnat-2.06-src.tgz / tar.out / fsf / gnat / ada / a-ada.h next >
C/C++ Source or Header  |  1996-09-28  |  4KB  |  88 lines

  1. /****************************************************************************/
  2. /*                                                                          */
  3. /*                         GNAT COMPILER COMPONENTS                         */
  4. /*                                                                          */
  5. /*                                A - A D A                                 */
  6. /*                                                                          */
  7. /*                              C Header File                               */
  8. /*                                                                          */
  9. /*                            $Revision: 1.9 $                              */
  10. /*                                                                          */
  11. /*           Copyright (c) 1992,1993,1994 NYU, All Rights Reserved          */
  12. /*                                                                          */
  13. /* GNAT is free software;  you can  redistribute it  and/or modify it under */
  14. /* terms of the  GNU General Public License as published  by the Free Soft- */
  15. /* ware  Foundation;  either version 2,  or (at your option) any later ver- */
  16. /* sion.  GNAT is distributed in the hope that it will be useful, but WITH- */
  17. /* OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY */
  18. /* or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License */
  19. /* for  more details.  You should have  received  a copy of the GNU General */
  20. /* Public License  distributed with GNAT;  see file COPYING.  If not, write */
  21. /* to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
  22. /*                                                                          */
  23. /****************************************************************************/
  24.  
  25. /* This file contains some standard macros for performing Ada-like
  26.    operations. These are used to aid in the translation of other headers. */
  27.  
  28. /* Inlined functions in header are preceded by INLINE, which is normally set
  29.    to extern inline for GCC, but may be set to static for use in standard 
  30.    ANSI-C.  */
  31.  
  32. #ifndef INLINE
  33. #ifdef __GNUC__
  34. #define INLINE static inline
  35. #else
  36. #define INLINE static
  37. #endif
  38. #endif
  39.  
  40. /* "const" is only in ANSI-C.  */
  41.  
  42. #if ! defined(__STDC__) && ! defined(const)
  43. #define const
  44. #endif
  45.  
  46. /* Define a macro to concatenate two strings.  Write it for ANSI C and
  47.    for traditional C.  */
  48.  
  49. #ifdef __STDC__
  50. #define CAT(A,B) A##B
  51. #else
  52. #define _ECHO(A) A
  53. #define CAT(A,B) ECHO(A)B
  54. #endif
  55.  
  56. /* The following macro definition simulates the effect of a declaration of 
  57.    a subtype, where the first two parameters give the name of the type and
  58.    subtype, and the third and fourth parameters give the subtype range. The
  59.    effect is to compile a typedef defining the subtype as a synonym for the 
  60.    type, together with two constants defining the end points.  */
  61.  
  62. #define SUBTYPE(SUBTYPE,TYPE,FIRST,LAST)    \
  63.   typedef TYPE SUBTYPE;            \
  64.   static const SUBTYPE CAT (SUBTYPE,__First) = FIRST; \
  65.   static const SUBTYPE CAT (SUBTYPE,__Last) = LAST;
  66.  
  67.  
  68. /* The following definitions provide the equivalent of the Ada IN and NOT IN
  69.    operators, assuming that the subtype involved has been defined using the 
  70.    SUBTYPE macro defined above.  */
  71.  
  72. #define IN(VALUE,SUBTYPE) \
  73.   (((VALUE) >= CAT (SUBTYPE,__First)) && ((VALUE) <= CAT (SUBTYPE,__Last)))
  74.  
  75. #define NOTIN(VALUE,SUBTYPE) (! IN (VALUE, SUBTYPE))
  76.  
  77. /* Add prototype support.  */
  78. #ifndef PROTO
  79. #if defined (USE_PROTOTYPES) ? USE_PROTOTYPES : defined (__STDC__)
  80. #define PROTO(ARGS) ARGS
  81. #else
  82. #define PROTO(ARGS) ()
  83. #endif
  84. #endif
  85.  
  86.  
  87. /* End of a-ada.h (tree transformer C header file) */
  88.