normalized doxygen comments
authorMatthias Braun <matze@braunis.de>
Fri, 27 Apr 2007 11:15:23 +0000 (11:15 +0000)
committerMatthias Braun <matze@braunis.de>
Fri, 27 Apr 2007 11:15:23 +0000 (11:15 +0000)
[r13517]

ir/ident/ident.c
ir/ident/ident.h
ir/ident/ident_t.h

index a90b0b7..efd3a0a 100644 (file)
  * PURPOSE.
  */
 
-/*
- * Project:     libFIRM
- * File name:   ir/common/ident.c
- * Purpose:     Hash table to store names.
- * Author:      Goetz Lindenmaier
- * Modified by:
- * Created:
- * CVS-ID:      $Id$
- * Copyright:   (c) 1999-2003 Universität Karlsruhe
+/**
+ * @file
+ * @brief     Hash table to store names.
+ * @author    Goetz Lindenmaier
+ * @version   $Id$
  */
-
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
index 42f29f4..0cfd023 100644 (file)
  * PURPOSE.
  */
 
-/*
- * Project:     libFIRM
- * File name:   ir/common/ident_t.h
- * Purpose:     Data type for unique names.
- * Author:      Goetz Lindenmaier
- * Modified by:
- * Created:
- * CVS-ID:      $Id$
- * Copyright:   (c) 1999-2003 Universität Karlsruhe
- */
 /**
- * @file ident.h
- *
- * Declarations for identifiers in the firm library
- *
- * Identifiers are used in the firm library. This is the interface to it.
+ * @file
+ * @brief    Data type for unique names.
+ * @author   Goetz Lindenmaier
+ * @version  $Id$
+ * @summary
+ *  Declarations for identifiers in the firm library
+ *
+ *  Identifiers are used in the firm library. This is the interface to it.
  */
-#ifndef _IDENT_H_
-#define _IDENT_H_
+#ifndef FIRM_IDENT_IDENT_H
+#define FIRM_IDENT_IDENT_H
 
 #include "firm_config.h"
 
@@ -307,4 +300,4 @@ int id_contains_wchar (ident *id, wchar_t c);
 }
 #endif
 
-# endif /* _IDENT_H_ */
+#endif
index 677f9d2..89452e6 100644 (file)
  * PURPOSE.
  */
 
-/*
- * Project:     libFIRM
- * File name:   ir/common/ident_t.h
- * Purpose:     Hash table to store names -- private header.
- * Author:      Goetz Lindenmaier
- * Modified by:
- * Created:
- * CVS-ID:      $Id$
- * Copyright:   (c) 1999-2003 Universität Karlsruhe
+/**
+ * @file
+ * @brief    Hash table to store names -- private header.
+ * @author   Goetz Lindenmaier
+ * @version  $Id$
  */
+#ifndef FIRM_IDENT_IDENT_T_H
+#define FIRM_IDENT_IDENT_T_H
 
-# ifndef _IDENT_T_H_
-# define _IDENT_T_H_
-
-# include "ident.h"
+#include "ident.h"
 
 /**
  * Initialize the ident module.
@@ -55,4 +50,4 @@ void finish_ident (void);
     + ((type *)(str))[(len)-1]) * 9 \
    + (len))
 
-# endif /* _IDENT_T_H_ */
+#endif