updated for new hooks
[libfirm] / ir / st / exc.h
index f270664..826b270 100644 (file)
@@ -1,7 +1,15 @@
-/* Copyright (c) 2002 by Universität Karlsruhe (TH).  All Rights Reserved */
 /*
-* Time-stamp: <Thursday, 19.12.2002, 15:45:43 goetz@i44pc2.info.uni-karlsruhe.de>
-*/
+ * Project:     libFIRM
+ * File name:   ir/st/exc.h
+ * Purpose:     Helper functions for jack exceptions.
+ * Author:      Florian Liekweg
+ * Modified by:
+ * Created:     4.3.2002
+ * CVS-ID:      $Id$
+ * Copyright:   (c) 2002-2003 Universität Karlsruhe
+ * Licence:     This file protected by GPL -  GNU GENERAL PUBLIC LICENSE.
+ */
+
 
 /**
    NAME
      Helper functions for exceptions
    S
      not quite complete
-   HISTORY
-     liekweg - Mar 4, 2002: Created.
-   CVS:
-     $Id$
 ***/
 
 # include "irnode.h"
 
 #include <stdbool.h>
 
+#ifdef __cplusplus
+       extern "C" {
+#endif
+
 typedef enum {
   exc_invalid = 0,                                     /* not yet computed */
   exc_normal,                                  /* normal CF */
@@ -43,6 +51,8 @@ typedef enum {
   exc_max                                              /* maximum value of enum for 'bounds checking' */
 } exc_t;
 
+
+
 const char *exc_to_string (exc_t);
 
 bool is_handler_entry (ir_graph*, ir_node*);
@@ -63,4 +73,8 @@ ir_node* get_Block_handler (ir_node*);
 void     set_Node_handler  (ir_node*, ir_node*);
 ir_node* get_Node_handler  (ir_node*);
 
+#ifdef __cplusplus
+}
+#endif
+
 # endif /* def _EXC_H_ */