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-namet.h < prev    next >
C/C++ Source or Header  |  1996-09-28  |  4KB  |  100 lines

  1. /****************************************************************************/
  2. /*                                                                          */
  3. /*                         GNAT COMPILER COMPONENTS                         */
  4. /*                                                                          */
  5. /*                              A - N A M E T                               */
  6. /*                                                                          */
  7. /*                              C Header File                               */
  8. /*                                                                          */
  9. /*                            $Revision: 1.21 $                             */
  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 is the C file that corresponds to the Ada package specification
  26.    Namet. It was created manually from files namet.ads and namet.adb.
  27.  
  28. /* Structure defining a names table entry.  */
  29.  
  30. struct Name_Entry
  31. {
  32.   Int Name_Chars_Index; /* Starting location of char in Name_Chars table. */
  33.   Short Name_Len;         /* Length of this name in characters. */
  34.   Byte Byte_Info;       /* Byte value associated with this name */
  35.   Byte Spare;           /* Unused */
  36.   Name_Id Hash_Link;    /* Link to next entry in names table for same hash
  37.                            code. Not accessed by C routines.  */
  38.   Int Int_Info;         /* Int value associated with this name */
  39. };
  40.  
  41. /* Pointer to names table vector. This pointer is passed to the tree
  42.    transformer and stored in a global location for access from here after
  43.    subtracting Names_First_Entry so that Name_Id values can be used as
  44.    subscripts into this table.  */
  45. extern struct Name_Entry *Names_Ptr;
  46.  
  47. /* Pointer to name characters table. This pointer is passed to the tree
  48.    transformer and stored in a global location for access from here.  */
  49. extern char *Name_Chars_Ptr;
  50.  
  51. #define Name_Buffer namet__name_buffer
  52. extern char Name_Buffer[];
  53.  
  54. extern Int namet__name_len;
  55. #define Name_Len namet__name_len
  56.  
  57. /* Get_Name_String returns a null terminated C string for the specified name.
  58.    We could use the official Ada routine for this purpose, but since the
  59.    strings we want are sitting in the name strings table in exactly the form
  60.    we need them (null terminated), we just point to the name directly. */
  61.  
  62. INLINE char *
  63. Get_Name_String (Id)
  64.      Name_Id Id;
  65. {
  66.   return Name_Chars_Ptr + Names_Ptr [Id].Name_Chars_Index + 1;
  67. }
  68.  
  69. /* Get_Decoded_Name_String returns a null terminated C string in the same
  70.    manner as Get_Name_String, except that it is decoded (i.e. upper half or
  71.    wide characters are put back in their external form, and character literals
  72.    are also returned in their external form (with surrounding apostrophes) */
  73.  
  74. extern void namet__get_decoded_name_string PROTO ((Name_Id));
  75.  
  76. INLINE char *
  77. Get_Decoded_Name_String (Id)
  78.      Name_Id Id;
  79. {
  80.   namet__get_decoded_name_string (Id);
  81.   Name_Buffer [Name_Len] = 0;
  82.   return Name_Buffer;
  83. }
  84.  
  85. /* Likewise, but also upper-case the string.  */
  86.  
  87. extern void casing__set_all_upper_case PROTO ((void));
  88.  
  89. INLINE char *
  90. Get_Upper_Decoded_Name_String (Id)
  91.      Name_Id Id;
  92. {
  93.   namet__get_decoded_name_string (Id);
  94.   casing__set_all_upper_case ();
  95.   Name_Buffer [Name_Len] = 0;
  96.   return Name_Buffer;
  97. }
  98.  
  99. /* End of a-namet.h (C version of Namet package specification and body) */
  100.