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

ir/external/read.c
ir/external/read.h
ir/external/read_t.h

index 9f82f25..fac1e87 100644 (file)
  * PURPOSE.
  */
 
-/* -*- c -*- */
-
-
-/*
- * Project:     libFIRM
- * File name:   ir/external/read.c
- * Purpose:     Read descriptions of external effects
- * Author:      Florian
- * Modified by: Boris Boesler
- * Created:     11.10.2004
- * CVS-ID:      $Id$
- * Copyright:   (c) 1999-2004 Universität Karlsruhe
+/**
+ * @file
+ * @brief     Read descriptions of external effects
+ * @author    Florian, Boris Boesler
+ * @date      11.10.2004
+ * @version   $Id$
  */
-
 #ifdef HAVE_CONFIG_H
 # include "config.h"
 #endif
index 2093515..28703f5 100644 (file)
  * PURPOSE.
  */
 
-/* -*- c -*- */
-/*
- * Project:     libFIRM
- * File name:   ir/external/read.h
- * Purpose:     Read descriptions of external effects
- * Author:      Florian
- * Modified by: Boris Boesler
- * Created:     11.10.2004
- * CVS-ID:      $Id$
- * Copyright:   (c) 1999-2004 Universität Karlsruhe
+/**
+ * @file
+ * @brief     Read descriptions of external effects
+ * @author    Florian, Boris Boesler
+ * @date      11.10.2004
+ * @version   $Id$
  */
-
-#ifndef _READ_H_
-#define _READ_H_
+#ifndef FIRM_EXTERNAL_READ_H
+#define FIRM_EXTERNAL_READ_H
 
 /*
   The public interface
@@ -44,8 +39,7 @@ int create_abstraction(const char *filename);
 
 void free_abstraction(void);
 
-
-#endif /* defined _READ_H_ */
+#endif
 
 /*
   $Log$
index a75b10f..b2e14e2 100644 (file)
  * PURPOSE.
  */
 
-/* -*- c -*- */
-/*
- * Project:     libFIRM
- * File name:   ir/external/read.h
- * Purpose:     Read descriptions of external effects
- * Author:      Florian
- * Modified by: Boris Boesler
- * Created:     11.10.2004
- * CVS-ID:      $Id$
- * Copyright:   (c) 1999-2004 Universität Karlsruhe
+/**
+ * @file
+ * @brief    Read descriptions of external effects, private header
+ * @author   Florian, Boris Boesler
+ * @date     11.10.2004
+ * @version  $Id$
  */
-
-#ifndef _READ_T_H_
-#define _READ_T_H_
+#ifndef FIRM_EXTERNAL_READ_T_H
+#define FIRM_EXTERNAL_READ_T_H
 
 #include "firm_types.h"
 
@@ -176,8 +171,7 @@ typedef struct mod_str
   struct mod_str *next;      /* unused - only one module possible */
 } module_t;
 
-
-#endif /* defined _READ_T_H_ */
+#endif
 
 /*
   $Log$