adjusted doxygen comments
authorMatthias Braun <matze@braunis.de>
Mon, 30 Apr 2007 09:32:25 +0000 (09:32 +0000)
committerMatthias Braun <matze@braunis.de>
Mon, 30 Apr 2007 09:32:25 +0000 (09:32 +0000)
[r13554]

ir/st/bs.h
ir/st/exc.c
ir/st/exc.h
ir/st/st.c
ir/st/st.h

index b958228..d585ecf 100644 (file)
  * PURPOSE.
  */
 
-/*
- * Project:     libFIRM
- * File name:   ir/st/bs.h
- * Purpose:     Provides a simple bit set.
- * Author:      Florian Liekweg
- * Modified by:
- * Created:     4.3.2002
- * CVS-ID:      $Id$
- * Copyright:   (c) 2002-2003 Universität Karlsruhe
- */
-
 /**
-   @file bs.h
-
-   Provides a simple bit set.
-
-   Not quite complete
-*/
-
-
-# ifndef _BS_H_
-# define _BS_H_
+ * @file
+ * @brief      Provides a simple bit set.
+ * @author     Florian Liekweg
+ * @date       4.3.2002
+ * @version    $Id$
+ * @note       Not quite complete
+ */
+#ifndef FIRM_ST_BS_H
+#define FIRM_ST_BS_H
 
 /**
  * the type of a bit set
@@ -63,4 +51,4 @@ typedef long int bs_t;
 /** returns TRUE if at least one bit is set */
 # define bs_zro(bs) (0x00000000 != bs)
 
-# endif /* ndef _BS_H_ */
+#endif
index 24f6fc0..e253345 100644 (file)
  * PURPOSE.
  */
 
-/*
- * Project:     libFIRM
- * File name:   ir/st/exc.c
- * 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
+/**
+ * @file
+ * @brief     Helper functions for jack exceptions.
+ * @author    Florian Liekweg
+ * @date      4.3.2002
+ * @version   $Id$
  */
 
 /**
index 64a79b7..1e841ed 100644 (file)
  * PURPOSE.
  */
 
-/*
- * 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
+/**
+ * @file
+ * @brief     Helper functions for jack exceptions.
+ * @author    Florian Liekweg
+ * @date      4.3.2002
+ * @version   $Id$
  */
 
-
 /**
    NAME
      exc
index da7a31e..6065e3c 100644 (file)
  * PURPOSE.
  */
 
-/*
- * Project:     libFIRM
- * File name:   ir/st/st.c
- * Purpose:     Provide some auxilliary structures for firm graphs.
- * Author:      Florian Liekweg
- * Modified by:
- * Created:     26.2.2002
- * CVS-ID:      $Id$
- * Copyright:   (c) 2002-2003 Universität Karlsruhe
+/**
+ * @file
+ * @brief      Provide some auxilliary structures for firm graphs.
+ * @author     Florian Liekweg
+ * @date       26.2.2002
+ * @version    $Id$
  */
 
 /**
index 8416ca1..9641329 100644 (file)
  * PURPOSE.
  */
 
-/*
- * Project:     libFIRM
- * File name:   ir/st/st.h
- * Purpose:     Provide some auxilliary structures for firm graphs.
- * Author:      Florian Liekweg
- * Modified by:
- * Created:     26.2.2002
- * CVS-ID:      $Id$
- * Copyright:   (c) 2002-2003 Universität Karlsruhe
- */
 /**
-   @file st.h
-
-   Provide some auxilliary structures for firm graphs.
-
-   @author Florian Liekweg
-
-   @note
-     not quite complete
-*/
-
-# ifndef _ST_H_
-# define _ST_H_
+ * @file
+ * @brief     Provide some auxilliary structures for firm graphs.
+ * @author    Florian Liekweg
+ * @date      26.2.2002
+ * @version   $Id$
+ * @note      not quite complete
+ */
+#ifndef FIRM_ST_ST_H
+#define FIRM_ST_ST_H
 
 /* Includes:  */
 #include "irgraph.h"
@@ -96,4 +83,4 @@ dom_env_t *get_dom_env (ir_graph*, ir_node*);
 void delete_dom_env (dom_env_t*);
 bool dominates_l (dom_env_t*, ir_node*);
 
-# endif /* defined _ST_H_ */
+#endif