Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
use BEGIN_DECL (ie, useless cleanup); picky documentation improvement
[simgrid.git] / include / xbt / dict.h
index 1837700..2728e7d 100644 (file)
@@ -2,21 +2,19 @@
 
 /* xbt/dict.h -- api to a generic dictionary                               */
 
-/* Authors: Martin Quinson                                                  */
-/* Copyright (C) 2003 the OURAGAN project.                                  */
+/* Copyright (c) 2004 Martin Quinson. All rights reserved.                  */
 
 /* This program is free software; you can redistribute it and/or modify it
  under the terms of the license (GNU LGPL) which comes with this package. */
* under the terms of the license (GNU LGPL) which comes with this package. */
 
 
 #ifndef _XBT_DICT_H
 #define _XBT_DICT_H
 
 #include "xbt/misc.h" /* BEGIN_DECL */
+#include "xbt/error.h"
 
-#ifdef  __cplusplus
-extern "C" 
-#endif
+BEGIN_DECL
 
 /*####[ Type definition ]####################################################*/
 typedef struct xbt_dict_ *xbt_dict_t;
@@ -143,8 +141,6 @@ int          xbt_dict_cursor_get_or_free (xbt_dict_cursor_t *cursor,
        xbt_dict_cursor_get_or_free(&(cursor),&(key),(void**)(&data));\
        xbt_dict_cursor_step(cursor) )
 
-#ifdef  __cplusplus
-}
-#endif
+END_DECL
 
 #endif /* _XBT_DICT_H */