From: Matthias Braun Date: Fri, 27 Apr 2007 11:15:23 +0000 (+0000) Subject: normalized doxygen comments X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=fc16f16a6846ae896c844a17cd3409faaf4a651d;p=libfirm normalized doxygen comments [r13517] --- diff --git a/ir/ident/ident.c b/ir/ident/ident.c index a90b0b723..efd3a0a07 100644 --- a/ir/ident/ident.c +++ b/ir/ident/ident.c @@ -17,17 +17,12 @@ * 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 diff --git a/ir/ident/ident.h b/ir/ident/ident.h index 42f29f4c2..0cfd0235c 100644 --- a/ir/ident/ident.h +++ b/ir/ident/ident.h @@ -17,25 +17,18 @@ * 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 diff --git a/ir/ident/ident_t.h b/ir/ident/ident_t.h index 677f9d23c..89452e655 100644 --- a/ir/ident/ident_t.h +++ b/ir/ident/ident_t.h @@ -17,21 +17,16 @@ * 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