absyntax_utils/absyntax_utils.hh
changeset 547 dab341e80664
parent 511 b22ae67d8003
child 564 dabffc3086dc
equal deleted inserted replaced
546:8cc4c51c4bfc 547:dab341e80664
    54 
    54 
    55 /* returns 0 if the names are equal!! Case is ignored. */
    55 /* returns 0 if the names are equal!! Case is ignored. */
    56 int compare_identifiers(symbol_c *ident1, symbol_c *ident2);
    56 int compare_identifiers(symbol_c *ident1, symbol_c *ident2);
    57 
    57 
    58 /* extract the value of an integer from an integer_c object !! */
    58 /* extract the value of an integer from an integer_c object !! */
    59 int extract_integer(symbol_c *integer);
    59 long long extract_integer_value(symbol_c *integer);
    60   
    60   
    61 /* A symbol table with all globally declared functions... */
    61 /* A symbol table with all globally declared functions... */
    62 extern function_declaration_c null_symbol1;
    62 extern function_declaration_c null_symbol1;
    63 typedef dsymtable_c<function_declaration_c *, &null_symbol1> function_symtable_t;
    63 typedef dsymtable_c<function_declaration_c *, &null_symbol1> function_symtable_t;
    64 extern function_symtable_t function_symtable;
    64 extern function_symtable_t function_symtable;
   117 #include "search_constant_type.hh"
   117 #include "search_constant_type.hh"
   118 #include "search_il_operand_type.hh"
   118 #include "search_il_operand_type.hh"
   119 #include "search_expression_type.hh"
   119 #include "search_expression_type.hh"
   120 #include "add_en_eno_param_decl.hh"
   120 #include "add_en_eno_param_decl.hh"
   121 #include "get_sizeof_datatype.hh"
   121 #include "get_sizeof_datatype.hh"
   122 #include "get_function_type.h"
       
   123 #include "search_il_label.hh"
   122 #include "search_il_label.hh"
   124 #include "get_var_name.hh"
   123 #include "get_var_name.hh"
   125 
   124 
   126 /***********************************************************************/
   125 /***********************************************************************/
   127 /***********************************************************************/
   126 /***********************************************************************/